Skip to content

Commit

Permalink
chore(husky): use recommended shebang to make scripts portable
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Nov 11, 2022
1 parent a2e84ff commit 7c2b13c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .husky/commit-msg
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

npx --no -- commitlint --edit "$1" || { echo "Try \033[1;32mnpx git-cz --disable-emoji\033[0;37m to commit and be align with the conventions or use \033[1;32git commit -m \"yolo!\" --no-verify\033[0;37m to bypass the commit-msg hook."; exit 1; }
2 changes: 1 addition & 1 deletion .husky/post-merge
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

# Install any missing dependencies since package.json changed
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

npx --no lint-staged
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-push
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

# Due to device performance, the tests are run only on one project and with increased timeout, while the tests stop immediately at the first failure.
Expand Down

0 comments on commit 7c2b13c

Please sign in to comment.