Skip to content

Commit

Permalink
Merge pull request #233 from stripedpajamas/fix-hash-paths
Browse files Browse the repository at this point in the history
Fix hash paths
  • Loading branch information
stripedpajamas authored Jul 26, 2019
2 parents b44a4f5 + 88503d7 commit 06cc20f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 17 deletions.
13 changes: 3 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ matrix:
- os: linux
sudo: required
env: BUILDARCH=x64
# arm64 builds don't work yet
# - os: linux
# sudo: required
# env: BUILDARCH=arm64
- os: osx

language: node_js
Expand Down Expand Up @@ -41,12 +37,9 @@ deploy:
- ./*.zip
- ./*.tar.gz
- ./*.dmg
- vscode/.build/linux/deb/i386/deb/*.deb
- vscode/.build/linux/rpm/i386/*.rpm
- vscode/.build/linux/deb/amd64/deb/*.deb
- vscode/.build/linux/rpm/x86_64/*.rpm
- vscode/.build/linux/deb/arm64/deb/*.deb
- vscode/out/*.AppImage
- ./*.deb
- ./*.rpm
- ./*.AppImage
on:
all_branches: true
condition: $SHOULD_BUILD = yes
Expand Down
14 changes: 7 additions & 7 deletions sum.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
sum_file VSCodiumUserSetup-*.exe
sum_file VSCodium-win32-*.zip
else # linux
sum_file vscode/out/*.AppImage
sum_file VSCodium-linux*.tar.gz
sum_file vscode/.build/linux/deb/amd64/deb/*.deb
sum_file vscode/.build/linux/rpm/x86_64/*.rpm
cp vscode/out/*.AppImage .
cp vscode/.build/linux/deb/amd64/deb/*.deb .
cp vscode/.build/linux/rpm/x86_64/*.rpm .

cp vscode/out/*.{sha256,sha1} .
cp vscode/.build/linux/deb/amd64/deb/*.{sha256,sha1} .
cp vscode/.build/linux/rpm/x86_64/*.{sha256,sha1} .
sum_file *.AppImage
sum_file VSCodium-linux*.tar.gz
sum_file *.deb
sum_file *.rpm
fi
fi

0 comments on commit 06cc20f

Please sign in to comment.