summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-06 10:38:55 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-06 10:38:55 +0200
commit7bfae56e8b49c2c11e4df82c2c6d4b4557ba2ae2 (patch)
treee1ed816578313b8527278e6220bd8a44eba01f3f
parentb0f2a9a461204b0c06bb73b85ea2a0aa3db25bdd (diff)
downloadjasper-client-7bfae56e8b49c2c11e4df82c2c6d4b4557ba2ae2.tar.gz
jasper-client-7bfae56e8b49c2c11e4df82c2c6d4b4557ba2ae2.zip
Use executable flag and shebang instead of explicit interpreter in shell scripts.
-rwxr-xr-xboot/boot.sh2
-rwxr-xr-xclient/start.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/boot/boot.sh b/boot/boot.sh
index 7a79c06..f4e577d 100755
--- a/boot/boot.sh
+++ b/boot/boot.sh
@@ -14,4 +14,4 @@ LD_LIBRARY_PATH="/usr/local/lib"
export LD_LIBRARY_PATH
PATH=$PATH:/usr/local/lib/
export PATH
-python2 boot.py &
+./boot.py &
diff --git a/client/start.sh b/client/start.sh
index b2b41bc..052db18 100755
--- a/client/start.sh
+++ b/client/start.sh
@@ -1,4 +1,4 @@
#!/bin/bash
cd $JASPER_HOME/jasper/client
rm -rf ../old_client
-python2 main.py &
+./main.py &