Skip to content

Commit

Permalink
chore(.husky): shell path and arg updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored and brettz9 committed Nov 14, 2022
1 parent 26141cb commit fb4ac92
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .husky/post-checkout
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx run-if-changed
4 changes: 2 additions & 2 deletions .husky/post-commit
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx run-if-changed
4 changes: 2 additions & 2 deletions .husky/post-merge
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx run-if-changed
4 changes: 2 additions & 2 deletions .husky/post-rewrite
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx run-if-changed
4 changes: 2 additions & 2 deletions .husky/pre-commit
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

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

npm test && npm run build && npm run check-readme

0 comments on commit fb4ac92

Please sign in to comment.