From: Rob Cornish Date: Mon, 25 Nov 2013 04:55:34 +0000 (+1100) Subject: Fixed variable assignment bug in rename() X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/45e5afa0df709c1aa8a7733ca9dc9dd810407ac0?ds=sidebyside Fixed variable assignment bug in rename() --- 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 }