aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2010-03-03 22:41:23 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2010-03-03 22:41:23 +0000
commit8ffcc006f0e9b562a2116a3ba8a48b126e1e9f41 (patch)
tree0260e769f343713c1681ec22ff23c878808fa4c9
parent6029fe2d08c66bf86e0e4167bc1b4e378556496c (diff)
Correct path when creating master git repo
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@184 83718e91-0e4f-0410-abf4-91180603181f
-rwxr-xr-xsrc/util/git-init-master-repo.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/git-init-master-repo.pl b/src/util/git-init-master-repo.pl
index d0f506e..0f8ea8a 100755
--- a/src/util/git-init-master-repo.pl
+++ b/src/util/git-init-master-repo.pl
@@ -29,7 +29,7 @@ print "Formaline: Creating git master repository...\n";
# Create the directory for the repository
mkdir $git_master_repo;
-$ENV{'GIT_DIR'} = $git_master_repo;
+$ENV{'GIT_DIR'} = "$git_master_repo/.git";
# Create the repository
print "Executing: $git_cmd init-db\n" unless $silent;