Added missing function(){} wrapper

This commit is contained in:
Chris Willis-Ford 2014-10-21 11:30:36 -07:00
parent 72985d9e2c
commit bd967fe6a5

View file

@ -68,7 +68,11 @@ function compileWithout3D(callback) {
}
compileWith3D(
errorCheckThen(
errorCheckThen(function() {
compileWithout3D(
errorCheckThen(
function() { process.exit(0); }))));
errorCheckThen(function() {
process.exit(0);
})
)
})
);