From 41d936a53907ea09469bdab9ecd7e384bd381e73 Mon Sep 17 00:00:00 2001 From: Jan-Tarek Butt Date: Sat, 12 Aug 2017 21:22:04 +0200 Subject: [PATCH] gluon-geolocator: geolocator.sh rm unneeded ; --- .../gluon-geolocator/files/lib/gluon/geolocator/geolocator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/gluon-geolocator/files/lib/gluon/geolocator/geolocator.sh b/package/gluon-geolocator/files/lib/gluon/geolocator/geolocator.sh index 1a080e10..48c4453b 100755 --- a/package/gluon-geolocator/files/lib/gluon/geolocator/geolocator.sh +++ b/package/gluon-geolocator/files/lib/gluon/geolocator/geolocator.sh @@ -8,7 +8,7 @@ PID_PART="/var/run/geolocator.pid" TIME_STAMP="/tmp/geolocator_timestamp" if [ -f $PID_PART ]; then - echo "The geolocator is still running"; exit 0; + echo "The geolocator is still running"; exit 0 else touch $PID_PART; fi Clean_pid() { [ -f $PID_PART ] && rm $PID_PART; exit 0; }