Skip to content

Commit 59c4fa4

Browse files
authored
Merge pull request #75 from codecae/build_compile_fix
Corrected issue where build.sh wasn't creating luac files
2 parents a5a8706 + b62ccc9 commit 59c4fa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ for f in ${MANIFEST[@]};
1919
do
2020
SRC_NAME=$f
2121
OBJ_NAME=$(dirname ${f})/$(basename ${f} .lua).luac
22-
echo -e "Compiling file \e[1m${SRC_NAME}\e[21m..." || \
22+
echo -e "Compiling file \e[1m${SRC_NAME}\e[21m..."
2323
luac -o ${OBJ_NAME} ${SRC_NAME} || \
2424
echo -e "\e[1m\e[39m[\e[31mBUILD FAILED\e[39m]\e[21m Compilation error in file \e[1m${SRC_NAME}\e[21m!" || \
2525
exit 1

0 commit comments

Comments
 (0)