summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanosch Knack <j.knack@micromata.com>2016-11-16 14:41:48 +0100
committerAnne Jan Brouwer <brouwer@annejan.com>2016-12-02 02:41:47 +0100
commit57e87dbbd1ec0c794f7793cefd8d61b77493878b (patch)
treed97862c65591a8e99fa6f44e33866c8f4559e367
parent2c971759f54dfb132354b5ffd4d016f390414da7 (diff)
now using gitexecutable variable, rather then "git"
-rw-r--r--mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 56ce49bc..8ab1ef19 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -737,7 +737,7 @@ void MainWindow::executePassGitInit() {
if (usePass)
executePass("git init");
else
- executeWrapper("git", "init \"" + passStore + '"');
+ executeWrapper(gitExecutable, "init \"" + passStore + '"');
}
/**