From f594f19bfbe024ba74a2a74bdd7018f4dd217083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Fri, 17 Jul 2009 15:28:03 +0000 Subject: [PATCH] Another patch by Jeroen Oortwijn: It completes the previous patch to the Installer, this time in the Installer FinishScript, to support making volumes with spaces in their names bootable. Thanks a bunch! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31620 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- data/system/boot/InstallerFinishScript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/system/boot/InstallerFinishScript b/data/system/boot/InstallerFinishScript index a551106a92..6e52cc7844 100644 --- a/data/system/boot/InstallerFinishScript +++ b/data/system/boot/InstallerFinishScript @@ -3,12 +3,12 @@ mount=$1 -if [ -z $mount ]; then +if [ -z "$mount" ]; then echo "Usage: $0 volume" exit 1 fi -if [ ! -d $mount ]; then +if [ ! -d "$mount" ]; then echo "$mount isn't mounted" exit 1 fi