Fixed a few bashisms, thanks to Trent W. Buck <trentbuck@gmail.com>.
This commit is contained in:
parent
02a9e71667
commit
0e2e348b53
|
@ -14,6 +14,6 @@ Breakpoint ()
|
|||
if [ "${LH_BREAKPOINTS}" = "enabled" ]
|
||||
then
|
||||
Echo_message "Waiting at ${NAME}"
|
||||
read
|
||||
read WAIT
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ Help ()
|
|||
|
||||
if [ -n "${USAGE}" ]
|
||||
then
|
||||
echo -e "${USAGE}"
|
||||
/bin/echo -e "${USAGE}"
|
||||
echo
|
||||
fi
|
||||
|
||||
|
|
|
@ -157,7 +157,7 @@ EOF
|
|||
usbdev="$(echo $rootpartition | sed -e 's/,[[:digit:]]//')"
|
||||
echo "Root partition is $rootpartition, device is: $usbdev"
|
||||
|
||||
echo "WAITING..." && read
|
||||
echo "WAITING..." && read WAIT
|
||||
|
||||
#cat > chroot/grub.sh << EOF
|
||||
#grub --batch << EOM
|
||||
|
|
Loading…
Reference in New Issue