Not sure what I’m doing wrong. Here’s my html5_args.lua file
local params =
{
– general params
platform = ‘html5’,
appName = ‘Super Smash Clash’,
appVersion = ‘2.14’,
dstPath = ‘/Users/josephhinkle/testproject/builds’,
projectPath = ‘/Users/josephhinkle/testproject/src/’,
includeStandardResources = false,
}
return params
And the output when I run CoronaBuilder.
$ /Applications/Corona/Native/Corona/mac/bin/CoronaBuilder.app/Contents/MacOS/CoronaBuilder build --lua /Users/josephhinkle/testproject/build_arguments/html5_args.lua
CoronaBuilder: building project with ‘/Users/josephhinkle/testproject/build_arguments/html5_2.14.lua’
Building app ‘Super Smash Clash’
Version ‘2.14’
Platform ‘HTML5’
PlatformVersion ‘-1’
Project: ‘/Users/josephhinkle/testproject/src/’
Dst: ‘/Users/josephhinkle/testproject/builds’
Custom build id: ‘none’
Build type: ‘distribution’
HTML5 builder started
Feb 08 04:18:30.369: CoronaBuilder: ERROR: Runtime error
?:0: attempt to concatenate a nil value
stack traceback:
?: in function ‘?’
?: in function <?:680>
error: CoronaBuilder: An error occurred during the build, possibly a Lua compile error
It works when I build for iOS and android. Not sure what’s different. Any ideas?