diff options
author | Ben Sima <ben@bsima.me> | 2022-08-03 17:38:29 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-08-03 17:38:29 -0400 |
commit | be7089b9f1cee330bc5973431b0d45dee840b46d (patch) | |
tree | c5038391f69e4b64eb30ceb698c7660dd5754b73 /Biz | |
parent | 3cbb52bb2eedf42caadaae0fd4832469bfbdde12 (diff) |
Fix globbing in pre-push hook
Diffstat (limited to 'Biz')
-rwxr-xr-x | Biz/Ide/hooks/pre-push | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Ide/hooks/pre-push b/Biz/Ide/hooks/pre-push index 3c826c4..5236651 100755 --- a/Biz/Ide/hooks/pre-push +++ b/Biz/Ide/hooks/pre-push @@ -1,2 +1,2 @@ #!/usr/bin/env bash -lint "$BIZ_ROOT/**/*" && bild --test "$BIZ_ROOT/**/*" +lint "$BIZ_ROOT"/**/* && bild --test "$BIZ_ROOT"/**/* |