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

give correct permissions to nw executable on GNU/Linux and OSX

parent e3962ac9
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -84,6 +84,11 @@ if [ ! -d "../pd/nw/nw" ]; then
tar -xf $nwjs_filename
fi
mv $nwjs_dirname ../pd/nw/nw
# make sure the nw binary is executable on GNU/Linux and OSX
if [[ $os != "win" ]]; then
chmod 755 ../pd/nw/nw/nw
fi
chmod 755 ../pd/nw/nw/nw
rm $nwjs_filename
fi
......
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