aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;