From: Richard Hartmann Date: Sat, 13 Jul 2013 18:25:52 +0000 (+0200) Subject: Fix commit 96f74d26de89fa1e390e26d015208163f689629e X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/cf88f08e584bbbbe61f2ee98f3436144eb4edeaf?ds=inline;hp=--cc Fix commit 96f74d26de89fa1e390e26d015208163f689629e Quote $1; change check_directory=$1 to check_directory="$1" --- cf88f08e584bbbbe61f2ee98f3436144eb4edeaf diff --git a/vcsh b/vcsh index e74910e..b240b60 100755 --- a/vcsh +++ b/vcsh @@ -359,7 +359,7 @@ if echo $VCSH_REPO_NAME | grep -q '/'; then fi check_dir() { - check_directory=$1 + check_directory="$1" if [ ! -d "$check_directory" ]; then if [ -e "$check_directory" ]; then fatal "'$check_directory' exists but is not a directory" 13