summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-08-03 17:38:29 -0400
committerBen Sima <ben@bsima.me>2022-08-03 17:38:29 -0400
commitbe7089b9f1cee330bc5973431b0d45dee840b46d (patch)
treec5038391f69e4b64eb30ceb698c7660dd5754b73
parent3cbb52bb2eedf42caadaae0fd4832469bfbdde12 (diff)
Fix globbing in pre-push hook
-rwxr-xr-xBiz/Ide/hooks/pre-push2
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"/**/*