Compare commits

...

2 Commits

Author SHA1 Message Date
1d7e28d938 Update install-gosu-binary.sh 2022-04-25 11:39:00 +02:00
7b16d801fb Fix build for non-x86 archtectures (By paleozogt) and update GOSU to 1.14
Fix build for non-x86 archtectures (By paleozogt) and update GOSU to 1.14

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2022-04-25 09:45:36 +02:00

View File

@ -13,8 +13,8 @@ if ! command -v gpg &> /dev/null; then
exit 1
fi
GOSU_VERSION=1.12
dpkgArch=$(if test "$(uname -m)" = "x86_64"; then echo amd64; else echo i386; fi)
GOSU_VERSION=1.13
dpkgArch=$(dpkg --print-architecture)
url="https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-${dpkgArch}"
url_key="https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-${dpkgArch}.asc"