From f5fcf43171ce4dedec6e55dd4f37052c4f64de18 Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 10 Sep 2014 17:16:58 +0200 Subject: Ported client/start.sh to python --- client/start.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'client/start.sh') diff --git a/client/start.sh b/client/start.sh index cc33f9c..935ebf4 100755 --- a/client/start.sh +++ b/client/start.sh @@ -1,3 +1,4 @@ -cd $JASPER_HOME/jasper/client -rm -rf ../old_client -python main.py & +#!/bin/bash +# This file exists for backwards compatibility with older versions of jasper. +# It might be removed in future versions. +"${0%/*}/main.py" -- cgit v1.3.1 From 2164883af62ee94a5b178f12684086885c2ea744 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 6 Sep 2014 10:32:43 +0200 Subject: Add shebang to start.sh --- boot/boot.sh | 2 +- client/start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'client/start.sh') diff --git a/boot/boot.sh b/boot/boot.sh index f57da14..9fc8af8 100755 --- a/boot/boot.sh +++ b/boot/boot.sh @@ -1,4 +1,4 @@ #!/bin/bash -# This file exists for backwards compatibility with older versions of jasper. +# This file exists for backwards compatibility with older versions of Jasper. # It might be removed in future versions. "${0%/*}/boot.py" diff --git a/client/start.sh b/client/start.sh index 935ebf4..cde8d8d 100755 --- a/client/start.sh +++ b/client/start.sh @@ -1,4 +1,4 @@ #!/bin/bash -# This file exists for backwards compatibility with older versions of jasper. +# This file exists for backwards compatibility with older versions of Jasper. # It might be removed in future versions. "${0%/*}/main.py" -- cgit v1.3.1