From 45e5afa0df709c1aa8a7733ca9dc9dd810407ac0 Mon Sep 17 00:00:00 2001
From: Rob Cornish <jrmcornish@gmail.com>
Date: Mon, 25 Nov 2013 15:55:34 +1100
Subject: [PATCH] Fixed variable assignment bug in rename()

---
 vcsh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vcsh b/vcsh
index 3924009..81d94b8 100755
--- a/vcsh
+++ b/vcsh
@@ -288,7 +288,7 @@ rename() {
 	# Now that the repository has been renamed, we need to fix up its configuration
 	# Overwrite old name..
 	GIT_DIR="$GIT_DIR_NEW"
-	$VCSH_REPO_NAME="$VCSH_REPO_NAME_NEW"
+	VCSH_REPO_NAME="$VCSH_REPO_NAME_NEW"
 	# ..and clobber all old configuration
 	upgrade
 }
-- 
GitLab