Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Jan 10, 2023
1 parent b5429d8 commit 0e3599d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions support/vscode/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ publish_lnx:
curl -L -o veryl.zip ${RELEASE_URL}/veryl-x86_64-linux.zip
unzip -o -d bin veryl.zip
rm bin/veryl veryl.zip
vsce publish --target linux-x64
npm run deploy:linux-x64
rm -rf bin

publish_win:
mkdir -p bin
curl -L -o veryl.zip ${RELEASE_URL}/veryl-x86_64-windows.zip
unzip -o -d bin veryl.zip
rm bin/veryl.exe veryl.zip
vsce publish --target win32-x64
npm run deploy:win32-x64
rm -rf bin

publish_mac:
mkdir -p bin
curl -L -o veryl.zip ${RELEASE_URL}/veryl-x86_64-mac.zip
unzip -o -d bin veryl.zip
rm bin/veryl veryl.zip
vsce publish --target darwin-x64
npm run deploy:darwin-x64
rm -rf bin

0 comments on commit 0e3599d

Please sign in to comment.