mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-10-31 20:14:27 +00:00
12 lines
410 B
Bash
Executable file
12 lines
410 B
Bash
Executable file
#!/bin/sh
|
|
if ! echo "$1" | grep https ; then
|
|
set -- "https://github.com/$1"
|
|
fi
|
|
LINK2="$(echo "$1"/releases | sed 's|github.com|api.github.com/repos|')"
|
|
if ! echo "$1" | grep github.com; then
|
|
LINK2="$(curl "$1" | grep -o https.\*releases | sed 's|github.com|api.github.com/repos|')"
|
|
fi
|
|
LINK3="$(curl "$LINK2" | grep -v arm64 | grep -v armh | grep -om1 https.\*AppImage)"
|
|
shift
|
|
appdwarf "$@" -u "$LINK3"
|