From 15c37d15241af27a4ab713a206b3dea2f8538f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Thu, 7 Sep 2017 17:21:27 +0200 Subject: [PATCH] Build: Fix lua error in package.lua --- build/scripts/actions/package.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/actions/package.lua b/build/scripts/actions/package.lua index bc86c4ba4..0797d5441 100644 --- a/build/scripts/actions/package.lua +++ b/build/scripts/actions/package.lua @@ -203,5 +203,5 @@ ACTION.Function = function () end local config = libDir .. " - " .. enabledArchs - print(string.format("Package successfully created at \"%s\" (%u MB, %s)", packageDir, size / (1024 * 1024), config)) + print(string.format("Package successfully created at \"%s\" (%u MB, %s)", packageDir, size // (1024 * 1024), config)) end