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 {
shift 2
echo
local LINE="$1"
while shift
while [ $# -gt 0 ] && shift
do {
echo "$LINE"
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