Fixed a bashism.

This commit is contained in:
Simon Walton 2001-12-14 22:45:06 +00:00 committed by Alexandre Julliard
parent 37083176e8
commit 44b15b18c9
1 changed files with 9 additions and 9 deletions

View File

@ -40,15 +40,15 @@ fi
while [ $# -gt 0 ] while [ $# -gt 0 ]
do do
case "$1" in case "$1" in
(--desktop) mode="desktop"; shift 1 ;; --desktop) mode="desktop"; shift 1 ;;
(--menu) mode="menu"; shift 1 ;; --menu) mode="menu"; shift 1 ;;
(--path) path="$2"; shift 2 ;; --path) path="$2"; shift 2 ;;
(--link) link="$2"; shift 2 ;; --link) link="$2"; shift 2 ;;
(--args) args="$2"; shift 2 ;; --args) args="$2"; shift 2 ;;
(--icon) icon="$2"; shift 2 ;; --icon) icon="$2"; shift 2 ;;
(--descr) descr="$2"; shift 2 ;; --descr) descr="$2"; shift 2 ;;
(--workdir) workdir="$2"; shift 2 ;; --workdir) workdir="$2"; shift 2 ;;
(*) usage ;; *) usage ;;
esac esac
done done