Skip to content

Commit 22ce2ca

Browse files
committedJan 5, 2022
gulpfile: fix compile-rust task
1 parent aefe3de commit 22ce2ca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎gulpfile.esm.js

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ let compile_rust = (cb) => {
1919
if (code !== 0) {
2020
console.error('wasm-pack failed! $?=' + code.toString());
2121
cb(new Error('wasm-pack failed'));
22+
} else {
23+
cb();
2224
}
2325
});
2426
};

0 commit comments

Comments
 (0)
Please sign in to comment.