simpler args

Sun, 11 Dec 2016 19:00:12 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 11 Dec 2016 19:00:12 -0500
changeset 447
8ef69d160a72
parent 446
acd0b08d467e
child 448
12d2866f8190

simpler args

.git_helpers/hooks/post-checkout file | annotate | diff | comparison | revisions
.git_helpers/hooks/post-commit file | annotate | diff | comparison | revisions
.git_helpers/hooks/post-merge file | annotate | diff | comparison | revisions
--- a/.git_helpers/hooks/post-checkout
+++ b/.git_helpers/hooks/post-checkout
@@ -1,3 +1,2 @@
 #!/bin/sh
-export PATH=/opt/local/bin:${PATH}
-CTAGS_HOOK=1 git ctags 2>&1
+git ctags hook 2>/dev/null
--- a/.git_helpers/hooks/post-commit
+++ b/.git_helpers/hooks/post-commit
@@ -1,3 +1,2 @@
 #!/bin/sh
-export PATH=/opt/local/bin:${PATH}
-CTAGS_HOOK=1 git ctags 2>&1
+git ctags hook 2>/dev/null
--- a/.git_helpers/hooks/post-merge
+++ b/.git_helpers/hooks/post-merge
@@ -1,3 +1,2 @@
 #!/bin/sh
-export PATH=/opt/local/bin:${PATH}
-CTAGS_HOOK=1 git ctags 2>&1
+git ctags hook 2>/dev/null

mercurial