Skip to content

Commit e838c4a

Browse files
committed
fix post_compile hook
1 parent fa8a887 commit e838c4a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bin/compile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ build() {
3939
fetch_meteor
4040
build
4141

42-
if [ -x post_compile ] ; then
42+
if [ -f bin/post_compile ] ; then
4343
echo "-----> Running post_compile hook"
44-
./post_compile
44+
chmod +x bin/post_compile
45+
bin/post_compile
4546
fi

0 commit comments

Comments
 (0)