Skip to content

Commit

Permalink
fix(source): Updates to calls to executables in husky hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Nov 10, 2023
1 parent 4b07bb6 commit 4c96604
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

echo $HUSKY_GIT_STDIN | storm-post-checkout $HUSKY_GIT_PARAMS
echo $HUSKY_GIT_STDIN | pnpm storm-post-checkout $HUSKY_GIT_PARAMS

2 changes: 1 addition & 1 deletion .husky/post-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

echo $HUSKY_GIT_STDIN | storm-post-commit $HUSKY_GIT_PARAMS
echo $HUSKY_GIT_STDIN | pnpm storm-post-commit $HUSKY_GIT_PARAMS
2 changes: 1 addition & 1 deletion .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

echo $HUSKY_GIT_STDIN | storm-post-merge $HUSKY_GIT_PARAMS
echo $HUSKY_GIT_STDIN | pnpm storm-post-merge $HUSKY_GIT_PARAMS

2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

echo $HUSKY_GIT_STDIN | storm-pre-commit $HUSKY_GIT_PARAMS
echo $HUSKY_GIT_STDIN | pnpm storm-pre-commit $HUSKY_GIT_PARAMS
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

echo $HUSKY_GIT_STDIN | storm-pre-push $HUSKY_GIT_PARAMS
echo $HUSKY_GIT_STDIN | pnpm storm-pre-push $HUSKY_GIT_PARAMS

0 comments on commit 4c96604

Please sign in to comment.