Browse Source

Line-endings are hard

Mike Smith 10 years ago
parent
commit
7f1a6417a0

+ 2 - 2
frameworks/Python/falcon/setup.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2_GUNICORN app:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/falcon/setup_py3.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY3_GUNICORN app:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/falcon/setup_pypy.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PYPY_GUNICORN app:app -c gunicorn_conf.py &

+ 4 - 4
frameworks/Python/flask/setup_nginxuwsgi.sh

@@ -1,5 +1,5 @@
-#!/bin/bash
-
-$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
-
+#!/bin/bash
+
+$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
+
 $PY2_ROOT/bin/uwsgi --ini uwsgi.ini --processes ${MAX_THREADS} --wsgi app:app &

+ 2 - 2
frameworks/Python/flask/setup_py2.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2_GUNICORN app:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/flask/setup_py3.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY3_GUNICORN app:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/flask/setup_pypy.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PYPY_GUNICORN app:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/pyramid/setup_py2.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2_GUNICORN wsgi:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/pyramid/setup_py3.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY3_GUNICORN wsgi:app -c gunicorn_conf.py &

+ 2 - 2
frameworks/Python/tornado/setup.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2 server.py --port=8080 --mongo=${DBHOST} --logging=error &

+ 2 - 2
frameworks/Python/tornado/setup_pg.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2 server.py --port=8080 --postgres=${DBHOST} --logging=error &

+ 2 - 2
frameworks/Python/tornado/setup_py3.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY3 server.py --port=8080 --mongo=${DBHOST} --logging=error &

+ 2 - 2
frameworks/Python/uwsgi/setup.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2_ROOT/bin/uwsgi --master -L -l 5000 --gevent 1000 --http :8080 --http-keepalive --http-processes ${MAX_THREADS} -p ${MAX_THREADS} -w hello --add-header "Connection: keep-alive" --pidfile /tmp/uwsgi.pid &

+ 4 - 4
frameworks/Python/uwsgi/setup_nginx.sh

@@ -1,5 +1,5 @@
-#!/bin/bash
-
-$NGINX_HOME/sbin/nginx -c ${TROOT}/nginx.conf
-
+#!/bin/bash
+
+$NGINX_HOME/sbin/nginx -c ${TROOT}/nginx.conf
+
 $PY2_ROOT/bin/uwsgi --ini uwsgi.ini --processes ${MAX_THREADS} --gevent 1000 --wsgi hello &

+ 2 - 2
frameworks/Python/wsgi/setup.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 $PY2_GUNICORN hello:app -c gunicorn_conf.py &

+ 4 - 4
frameworks/Python/wsgi/setup_nginxuwsgi.sh

@@ -1,5 +1,5 @@
-#!/bin/bash
-
-$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
-
+#!/bin/bash
+
+$NGINX_HOME/sbin/nginx -c $TROOT/nginx.conf
+
 $PY2_ROOT/bin/uwsgi --ini uwsgi.ini --processes ${MAX_THREADS} --wsgi hello:app &

+ 2 - 2
frameworks/Racket/racket-ws/bash_profile.sh

@@ -1,3 +1,3 @@
-#!/bin/bash
-
+#!/bin/bash
+
 export RACKET_HOME=${IROOT}/racket

+ 3 - 3
frameworks/Racket/racket-ws/setup.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
-
-cd bench
+#!/bin/bash
+
+cd bench
 $RACKET_HOME/bin/racket -t bench.rkt -- ${DBHOST} &