From 10fe1e17c1439be6921fdadbc360a3bff4b1f75e Mon Sep 17 00:00:00 2001 From: icedream Date: Mon, 20 Oct 2014 12:46:08 +0200 Subject: [PATCH] Is actually luac5.2, not luac52. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a1a54ed..3d97124 100644 --- a/build.sh +++ b/build.sh @@ -77,7 +77,7 @@ mkdir -p ../tmp/lua find . -type f -name '*.lua' | while read absfile; do file="lua/$absfile" echo "Compiling $file..." - luac52 -o "../tmp/$file.luac" "$absfile" && ( + luac5.2 -o "../tmp/$file.luac" "$absfile" && ( rm "/tmp/$file" mv "/tmp/$file.luac" "/tmp/$file" ) || (