mirror of
https://github.com/reactos/wine.git
synced 2025-02-05 03:26:33 +00:00
Avoids a shift warning thrown by older versions of bash.
This commit is contained in:
parent
94846a39dc
commit
13abcb0a26
@ -59,7 +59,7 @@ function conf_question {
|
||||
shift 2
|
||||
echo
|
||||
local LINE="$1"
|
||||
while shift
|
||||
while [ $# -gt 0 ] && shift
|
||||
do {
|
||||
echo "$LINE"
|
||||
LINE="$1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user