1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-25 14:50:24 +03:00

fix syntax error in case statement

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Björn Jacke 2009-01-08 19:14:48 +01:00 committed by Stefan Metzmacher
parent aeb798c325
commit fff711fddb

View File

@ -4,11 +4,11 @@
while true; do
case $1 in
(--version-file)
--version-file)
VERSION_FILE=$2
shift 2
;;
(*)
*)
break
;;
esac