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; }