Commit 13abcb0a authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

Avoids a shift warning thrown by older versions of bash.

parent 94846a39
...@@ -59,7 +59,7 @@ function conf_question { ...@@ -59,7 +59,7 @@ function conf_question {
shift 2 shift 2
echo echo
local LINE="$1" local LINE="$1"
while shift while [ $# -gt 0 ] && shift
do { do {
echo "$LINE" echo "$LINE"
LINE="$1" LINE="$1"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment