From 000c2d6e2c24e001b75d3a46cc9283cb46640f84 Mon Sep 17 00:00:00 2001 From: Phantop Date: Tue, 12 Apr 2022 16:01:57 -0400 Subject: [PATCH] github: prevent fetching armh binaries --- apps/github | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/github b/apps/github index ae0088a..680e6a6 100755 --- a/apps/github +++ b/apps/github @@ -6,5 +6,5 @@ LINK2="$(echo $1/releases | sed 's|github.com|api.github.com/repos|')" if ! grep github.com <<< "$1"; then LINK2="$(curl "$1" | grep -o https.\*releases | sed 's|github.com|api.github.com/repos|')" fi -LINK3="$(curl "$LINK2" | grep -v arm64 | grep -om1 https.\*AppImage)" +LINK3="$(curl "$LINK2" | grep -v arm64 | grep -v armh | grep -om1 https.\*AppImage)" appdwarf "${@:2}" -u "$LINK3"