Build: Fix lua error in package.lua

This commit is contained in:
Jérôme Leclercq 2017-09-07 17:21:27 +02:00
parent b26d0d92d5
commit 15c37d1524
1 changed files with 1 additions and 1 deletions

View File

@ -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