Skip to content

Commit

Permalink
fix depends.exe error checking
Browse files Browse the repository at this point in the history
apparently its error codes are complicated
  • Loading branch information
chearon committed Feb 8, 2019
1 parent 82b0cb4 commit 3a48e62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/win/bundle.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# write recurisve dependencies of canvas.node into depends.csv
./depends -c -oc:depends.csv node-canvas/build/Release/canvas.node || {
./depends -c -oc:depends.csv node-canvas/build/Release/canvas.node;

[ -f depends.csv ] || {
echo "error invoking depends.exe";
exit 1;
}
Expand Down

0 comments on commit 3a48e62

Please # to comment.