diff options
| author | Michael Forney <mforney@mforney.org> | 2017-02-27 09:29:02 -0800 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2017-02-27 09:31:01 -0800 |
| commit | 06198df52dc801cf77465bb4946a477a5ffa11fb (patch) | |
| tree | c74fde9edc4319fd02146557a219679642af4296 | |
| parent | 2513d3050282a0870eb22c8d394c4b50dca9bd1b (diff) | |
Drop oasis from libexec tool paths
This requires you to update your /.git hooks and /etc/rc.shutdown.
| -rw-r--r-- | src/gen.rc | 4 | ||||
| -rwxr-xr-x | template/hooks/post-checkout | 2 | ||||
| -rwxr-xr-x | template/hooks/post-merge | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ cflags\ '-std=c11' exe applyperms applyperms.c -file libexec/oasis/applyperms '$outdir'/applyperms 755 +file libexec/applyperms '$outdir'/applyperms 755 exe shutdown shutdown.c -file libexec/oasis/shutdown '$outdir'/shutdown 755 +file libexec/shutdown '$outdir'/shutdown 755 diff --git a/template/hooks/post-checkout b/template/hooks/post-checkout index 5e59bb5c..2a7a1c2a 100755 --- a/template/hooks/post-checkout +++ b/template/hooks/post-checkout @@ -12,4 +12,4 @@ else set "$old" "$new" fi -exec "$(git config oasis.root)"/libexec/oasis/applyperms "$@" +exec "$(git config oasis.root)"/libexec/applyperms "$@" diff --git a/template/hooks/post-merge b/template/hooks/post-merge index b9563d0d..f96e1313 100755 --- a/template/hooks/post-merge +++ b/template/hooks/post-merge @@ -1,3 +1,3 @@ #!/bin/sh -exec "$(git config oasis.root)"/libexec/oasis/applyperms ORIG_HEAD HEAD +exec "$(git config oasis.root)"/libexec/applyperms ORIG_HEAD HEAD |
