Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit f964209

Browse files
author
Kenneth Reitz
committed
Merge remote-tracking branch 'origin/master'
2 parents 9069621 + 2e699d3 commit f964209

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

bin/steps/hooks/post_compile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

3-
if [ -f $BIN_DIR/post_compile ]; then
3+
if [ -f bin/post_compile ]; then
44
echo "-----> Running post-compile hook"
5-
chmod +x $BIN_DIR/post_compile
6-
$BIN_DIR/post_compile
5+
chmod +x bin/post_compile
6+
bin/post_compile
77
fi

bin/steps/hooks/pre_compile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

3-
if [ -f $BIN_DIR/pre_compile ]; then
3+
if [ -f bin/pre_compile ]; then
44
echo "-----> Running pre-compile hook"
5-
chmod +x $BIN_DIR/pre_compile
6-
$BIN_DIR/pre_compile
5+
chmod +x bin/pre_compile
6+
bin/pre_compile
77
fi

0 commit comments

Comments
 (0)