Skip to content

Commit

Permalink
ArmCord: update to 3.2.4-libwebp
Browse files Browse the repository at this point in the history
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
theofficialgman committed Oct 11, 2023
1 parent f777281 commit b09a84b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/updates/ArmCord.sh
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
4 changes: 2 additions & 2 deletions apps/ArmCord/install-32
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
4 changes: 2 additions & 2 deletions apps/ArmCord/install-64
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

0 comments on commit b09a84b

Please sign in to comment.