Skip to content

Commit

Permalink
fix the windows builder to not rely on wget
Browse files Browse the repository at this point in the history
  • Loading branch information
joshie committed Jan 28, 2020
1 parent a6514c9 commit e86cb0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beatsaber-to-audica",
"version": "0.2.0",
"version": "0.2.1",
"description": "Utility to Convert Beat Saber Custom Tracks to Audica",
"main": "bstoaud.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions release_data/0.2.1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix a bad assumption in the windows builder
2 changes: 1 addition & 1 deletion windows_release_build/build_windows_release_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for i in $(ls ../../../ | grep -v windows_release_build | grep -v node_modules);
done
npm install
cd ..
wget https://nodejs.org/dist/v10.15.3/node-v10.15.3-win-x64.zip
curl https://nodejs.org/dist/v10.15.3/node-v10.15.3-win-x64.zip -L -o node-v10.15.3-win-x64.zip
unzip node-v10.15.3-win-x64.zip
rm node-v10.15.3-win-x64.zip
mv node-v10.15.3-win-x64 node
Expand Down

0 comments on commit e86cb0d

Please sign in to comment.