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…
Reference in New Issue