File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ console.log(`${colors.GREEN}Building binaries...${colors.CLEAR}`)
5757var settings = loadSettings ( `${ process . cwd ( ) } /${ constants . SETTINGS_FILE } ` )
5858
5959if ( settings . godot_command === undefined ) scriptError ( `Must configure path to Godot executable` )
60- if ( ! ( settings [ ' jobs' ] instanceof Array ) ) scriptError ( `No Jobs defined.` )
60+ if ( ! ( settings . jobs instanceof Array ) ) scriptError ( `No Jobs defined.` )
6161
62- settings [ ' jobs' ] . forEach ( ( job :Job , IDX :number ) => {
62+ settings . jobs . forEach ( ( job :Job , IDX :number ) => {
6363 if ( job . preset === undefined || job . path === undefined )
6464 scriptError ( `Job ${ IDX + 1 } of ${ settings [ 'jobs' ] . length } incorrect format.` )
6565 execSync ( `${ settings . godot_command } --export-release ${ job . preset } ${ job . path } ` )
You can’t perform that action at this time.
0 commit comments