-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ArmCord has some precedent for releasing versions with tags that have extra information after the version with a `-` that is not used in the release artifact naming. works around issue Legcord/Legcord#481
- Loading branch information
1 parent
f777281
commit b09a84b
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
webVer=$(get_release ArmCord/ArmCord) | ||
armhf_url="https://github.com/ArmCord/ArmCord/releases/download/v${webVer}/ArmCord_${webVer}_armv7l.deb" | ||
arm64_url="https://github.com/ArmCord/ArmCord/releases/download/v${webVer}/ArmCord_${webVer}_arm64.deb" | ||
armhf_url="https://github.com/ArmCord/ArmCord/releases/download/v${webVer}/ArmCord_${webVer%-*}_armv7l.deb" | ||
arm64_url="https://github.com/ArmCord/ArmCord/releases/download/v${webVer}/ArmCord_${webVer%-*}_arm64.deb" | ||
|
||
source $GITHUB_WORKSPACE/.github/workflows/update_github_script.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
version=3.2.4 | ||
version=3.2.4-libwebp | ||
|
||
install_packages "https://github.com/ArmCord/ArmCord/releases/download/v${version}/ArmCord_${version}_armv7l.deb" || exit 1 | ||
install_packages "https://github.com/ArmCord/ArmCord/releases/download/v${version}/ArmCord_${version%-*}_armv7l.deb" || exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
version=3.2.4 | ||
version=3.2.4-libwebp | ||
|
||
install_packages "https://github.com/ArmCord/ArmCord/releases/download/v${version}/ArmCord_${version}_arm64.deb" || exit 1 | ||
install_packages "https://github.com/ArmCord/ArmCord/releases/download/v${version}/ArmCord_${version%-*}_arm64.deb" || exit 1 |