Skip to content

Commit 530ca37

Browse files
committed
.githooks/pre-push: Use /usr/bin/env sh instead of /usr/bin/sh
While /usr/bin/sh runs fine on linux, it is better to use env to lookup sh from path, as macOS did not have sh in /usr/bin (It was in /bin).
1 parent 98f252c commit 530ca37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.githooks/pre-push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/sh
1+
#!/usr/bin/env sh
22

33
set -e
44

0 commit comments

Comments
 (0)