fix crashes due to incomplete renaming

This commit is contained in:
Hylke Bons 2010-05-03 01:14:27 +01:00
parent ef235a14e6
commit f15f69d7a9
2 changed files with 26 additions and 26 deletions

View file

@ -53,7 +53,7 @@ namespace SparkleShare {
Process.StartInfo.FileName = "gvfs-set-attribute";
Process.StartInfo.Arguments = ReposPath + " metadata::custom-icon " +
"folder-sparkleshare";
"file://usr/share/icons/hicolor/48x48/places/folder-sparkleshare";
Process.Start();
}
@ -114,4 +114,4 @@ namespace SparkleShare {
}
}
}

View file

@ -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