From cf88f08e584bbbbe61f2ee98f3436144eb4edeaf Mon Sep 17 00:00:00 2001
From: Richard Hartmann <richih.mailinglist@gmail.com>
Date: Sat, 13 Jul 2013 20:25:52 +0200
Subject: [PATCH] Fix commit 96f74d26de89fa1e390e26d015208163f689629e

Quote $1; change

	check_directory=$1

to

	check_directory="$1"
---
 vcsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
GitLab