Merge pull request #168 from Liam-Lior/master

Fixing some command line options
This commit is contained in:
Hylke Bons 2011-05-07 05:06:48 -07:00
commit eff71a65ae

View file

@ -52,9 +52,15 @@ case $1 in
stop stop
start start
;; ;;
help|--help) help|--help|-h)
mono "@expanded_libdir@/@PACKAGE@/SparkleShare.exe" --help mono "@expanded_libdir@/@PACKAGE@/SparkleShare.exe" --help
;; ;;
-d|--disable-gui)
mono "@expanded_libdir@/@PACKAGE@/SparkleShare.exe" --disable-gui
;;
-v|--version)
mono "@expanded_libdir@/@PACKAGE@/SparkleShare.exe" --version
;;
*) *)
echo "Usage: sparkleshare {start|stop|restart|help}" echo "Usage: sparkleshare {start|stop|restart|help}"
;; ;;