Skip to content

Commit 1b44976

Browse files
committed
Fix final part of arg expansion #99 #72
1 parent 84ff159 commit 1b44976

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ for opt in "$@"; do
5050
# http://unix.stackexchange.com/a/48432
5151
trap "exit" INT
5252
while true; do
53-
doProgram
53+
doProgram $@
5454
# connect tty back to stdin since we closed it
5555
# earlier. this also works since we will only read
5656
# from stdin once and then go permanent interactive mode
@@ -60,4 +60,4 @@ for opt in "$@"; do
6060
fi
6161
done
6262

63-
doProgram
63+
doProgram $@

0 commit comments

Comments
 (0)