Skip to content
Snippets Groups Projects
Commit e0119971 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

make the build fail if nwjs binary isn't successfully downloaded

parent b2c87b8c
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ if [ ! -d "../pd/nw/nw" ]; then
nwjs_url=${nwjs_url}/$nwjs_filename
echo "Fetching the nwjs binary from"
echo "$nwjs_url"
wget -nv $nwjs_url
wget -nv $nwjs_url || exit 1
if [[ $os == "win" || $os == "osx" ]]; then
unzip $nwjs_filename
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment