13
0

fix missing quote in disk space check failure message

git-svn-id: svn://localhost/ardour2/branches/3.0@11785 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Todd Naugle 2012-04-03 20:22:12 +00:00
parent 81372b6ebe
commit 37117e5c45

View File

@ -241,7 +241,7 @@ else
if [ ${FREE_BYTES} -le ${REQUIRED_BYTES} ] ; then
echo ""
echo "!!! ERROR !!! - Insufficient disk space in ${PKG_PATH}"
echo "Install requires ${REQUIRED_BYTES} bytes and
echo "Install requires ${REQUIRED_BYTES} bytes and"
echo "there is only ${FREE_BYTES} bytes of free space"
echo ""
read -p "Press ENTER to exit installer:" BLAH
@ -254,7 +254,7 @@ else
if [ ${FREE_BYTES} -le ${REQUIRED_BYTES} ] ; then
echo ""
echo "!!! ERROR !!! - Insufficient disk space in ${INSTALL_DEST_BASE}"
echo "Install requires ${REQUIRED_BYTES} bytes and
echo "Install requires ${REQUIRED_BYTES} bytes and"
echo "there is only ${FREE_BYTES} bytes of free space"
echo ""
read -p "Press ENTER to exit installer:" BLAH