From 3794fd25c76bc3c970be93fd3e864eebf32859ee Mon Sep 17 00:00:00 2001 From: jiho-sf Date: Tue, 19 May 2009 18:17:11 +0000 Subject: [PATCH] Quoted some more home directory calls Accomodate for spaces in $HOME --- packaging/macosx/Resources/script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/macosx/Resources/script b/packaging/macosx/Resources/script index e6b7b224d..c58361d86 100755 --- a/packaging/macosx/Resources/script +++ b/packaging/macosx/Resources/script @@ -39,12 +39,12 @@ if [[ $VERSION -le 4 ]]; then ps -wx -ocommand | grep -e '[X]11' > /dev/null || exit 11 # Warn the user about time-consuming generation of fontconfig caches. - test -f ${HOME}/.inkscape/.fccache-new || exit 12 + test -f "${HOME}/.inkscape/.fccache-new" || exit 12 else # Leopard onwards... # Warn the user about time-consuming generation of fontconfig caches. - test -d ${HOME}/.fontconfig || exit 12 + test -d "${HOME}/.fontconfig" || exit 12 fi -- 2.39.5