From 37117e5c45d72dadbe028a7f02d19d43e5b989f2 Mon Sep 17 00:00:00 2001 From: Todd Naugle Date: Tue, 3 Apr 2012 20:22:12 +0000 Subject: [PATCH] fix missing quote in disk space check failure message git-svn-id: svn://localhost/ardour2/branches/3.0@11785 d708f5d6-7413-0410-9779-e7cbd77b26cf --- tools/linux_packaging/stage2.run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/linux_packaging/stage2.run b/tools/linux_packaging/stage2.run index fc13072d18..cb15b9ba4c 100755 --- a/tools/linux_packaging/stage2.run +++ b/tools/linux_packaging/stage2.run @@ -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