Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/guysoft/OctoPi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Sheffer <guysoft@gmail.com>2019-02-18 17:37:51 +0300
committerGitHub <noreply@github.com>2019-02-18 17:37:51 +0300
commit94cb8314eeb53f7d910517f9f0b7d82a91a324fe (patch)
treea86a9a9a2c7448e5407bad78a477ed519859f426
parent83a7bc3961d1a337b3a2f2d9e7d8ab364fc3b4af (diff)
parent65c07c203ab2d98ba99745e8c61e0f918fd22728 (diff)
Merge pull request #574 from milkey-mouse/git-wrapper-exec
Directly exec git instead of running child process
-rw-r--r--src/modules/octopi/filesystem/home/root/bin/git2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/octopi/filesystem/home/root/bin/git b/src/modules/octopi/filesystem/home/root/bin/git
index d10f25c..39a0e07 100644
--- a/src/modules/octopi/filesystem/home/root/bin/git
+++ b/src/modules/octopi/filesystem/home/root/bin/git
@@ -13,4 +13,4 @@ then
exit 1
fi
-/usr/bin/git "$@"
+exec /usr/bin/git "$@"