Skip to content

Commit fa5d16c

Browse files
committed
Safety check
1 parent 9bb9f0f commit fa5d16c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

scripts/build-packed.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ var pack = spawn('make', ['package']);
44
pack.stderr.setEncoding("utf8");
55

66
pack.stderr.on('data', function (data) {
7-
console.error(data);
7+
if (data != "Failed to find module: core/ide") // we can ignore this from dryice
8+
console.error(data);
89
});
910

1011
pack.on('exit', function (code) {
11-
if (code !== 0) {
12-
console.error('pack process exited with code ' + code);
13-
process.exit(code);
14-
}
12+
if (code !== 0) {
13+
console.error('pack process exited with code ' + code);
14+
process.exit(code);
15+
}
1516
});

0 commit comments

Comments
 (0)