mirror of
https://github.com/scratchfoundation/scratch-flash.git
synced 2024-11-30 19:27:01 -05:00
Added missing function(){} wrapper
This commit is contained in:
parent
72985d9e2c
commit
bd967fe6a5
1 changed files with 7 additions and 3 deletions
|
@ -68,7 +68,11 @@ function compileWithout3D(callback) {
|
|||
}
|
||||
|
||||
compileWith3D(
|
||||
errorCheckThen(
|
||||
errorCheckThen(function() {
|
||||
compileWithout3D(
|
||||
errorCheckThen(
|
||||
function() { process.exit(0); }))));
|
||||
errorCheckThen(function() {
|
||||
process.exit(0);
|
||||
})
|
||||
)
|
||||
})
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue