diff options
Diffstat (limited to 'basta.sh')
-rw-r--r-- | basta.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -338,7 +338,7 @@ basta.fullscreen() local args=$(printf "%q " "$@") if ! [ -t 1 ] && ! [ $force ] ; then - eval command $args + eval command "$args" return $? fi @@ -356,7 +356,7 @@ basta.fullscreen() printf $'\e7\e[1;%sr\e8' $realrows >&$ttyfd stty rows $realrows <&$ttyfd - LINES=$realrows eval command $args || exit=$? + LINES=$realrows eval command "$args" || exit=$? if [ $saveterm ] ; then printf $'\e[?1049l' >&$ttyfd |