From 3c2297b8c1a684fadc5a016b48356e04736199a8 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 3 May 2010 01:14:27 +0100 Subject: [PATCH] fix crashes due to incomplete renaming --- SparkleShare | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/SparkleShare b/SparkleShare index 238807fa..5ecfc3a8 100644 --- a/SparkleShare +++ b/SparkleShare @@ -1,57 +1,57 @@ #!/bin/bash # Create a directory to save the pid to -mkdir -p /tmp/sparklepony/ +mkdir -p /tmp/sparkleshare/ if [[ "$1" == "start" ]]; then - if [ -e "/tmp/sparklepony/sparklepony.pid" ]; then - echo "SparklePony is already running." + if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then + echo "SparkleShare is already running." else - echo -n "Starting SparklePony..." + echo -n "Starting SparkleShare..." - # Start SparklePony in the background and save the pid - mono /usr/local/share/sparklepony/SparklePony.exe $2 & + # Start SparkleShare in the background and save the pid + mono /usr/local/share/sparkleshare/SparkleShare.exe $2 & PID=$! - echo $PID > /tmp/sparklepony/sparklepony.pid + echo $PID > /tmp/sparkleshare/sparkleshare.pid echo " Done." fi fi if [[ "$1" == "stop" ]]; then - if [ -e "/tmp/sparklepony/sparklepony.pid" ]; then - echo -n "Stopping SparklePony..." - kill `cat /tmp/sparklepony/sparklepony.pid` - rm -f /tmp/sparklepony/sparklepony.pid + if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then + echo -n "Stopping SparkleShare..." + kill `cat /tmp/sparkleshare/sparkleshare.pid` + rm -f /tmp/sparkleshare/sparkleshare.pid echo " Done." else - echo "SparklePony isn't running." + echo "SparkleShare isn't running." fi fi if [[ "$1" == "restart" ]]; then - if [ -e "/tmp/sparklepony/sparklepony.pid" ]; then - echo -n "Stopping SparklePony..." - kill `cat /tmp/sparklepony/sparklepony.pid` - rm -f /tmp/sparklepony/sparklepony.pid + if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then + echo -n "Stopping SparkleShare..." + kill `cat /tmp/sparkleshare/sparkleshare.pid` + rm -f /tmp/sparkleshare/sparkleshare.pid echo " Done." else - echo "SparklePony isn't running." + echo "SparkleShare isn't running." fi - if [ -e "/tmp/sparklepony/sparklepony.pid" ]; then - echo "SparklePony is already running." + if [ -e "/tmp/sparkleshare/sparkleshare.pid" ]; then + echo "SparkleShare is already running." else - echo -n "Starting SparklePony..." + echo -n "Starting SparkleShare..." - # Start SparklePony in the background and save the pid - mono /usr/local/share/sparklepony/SparklePony.exe $2 & + # Start SparkleShare in the background and save the pid + mono /usr/local/share/sparkleshare/SparkleShare.exe $2 & PID=$! - echo $PID > /tmp/sparklepony/sparklepony.pid + echo $PID > /tmp/sparkleshare/sparkleshare.pid echo " Done." fi fi if [[ "$1" == "--help" ]]; then - mono /usr/local/share/sparklepony/SparklePony.exe --help + mono /usr/local/share/sparkleshare/SparkleShare.exe --help fi