mirror of
https://github.com/YunoHost-Apps/gogs_ynh.git
synced 2024-09-03 20:36:23 +02:00
Merge 51e8bd1f9e
into e9decb8913
This commit is contained in:
commit
b1064d9854
1 changed files with 4 additions and 4 deletions
|
@ -13,14 +13,14 @@ x86_64) ARCHITECTURE="amd64"
|
|||
;;
|
||||
i386|i686) ARCHITECTURE="386"
|
||||
;;
|
||||
armhf|armel) ARCHITECTURE="arm"
|
||||
armhf|armel|armv7l) ARCHITECTURE="arm"
|
||||
;;
|
||||
*) echo "Unable to detect your achitecture" && exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# Remote URL to fetch Gogs tarball
|
||||
GOGS_BINARY_URL="https://github.com/gogits/gogs/releases/download/v${VERSION}/linux_${ARCHITECTURE}.tar.gz"
|
||||
GOGS_BINARY_URL="https://github.com/gogits/gogs/releases/download/v${VERSION}/linux_${ARCHITECTURE}.zip"
|
||||
|
||||
#
|
||||
# Common helpers
|
||||
|
@ -32,11 +32,11 @@ extract_gogs() {
|
|||
local DESTDIR=$1
|
||||
|
||||
# retrieve and extract Gogs tarball
|
||||
gogs_tarball="/tmp/gogs.tar.gz"
|
||||
gogs_tarball="/tmp/gogs.zip"
|
||||
rm -f "$gogs_tarball"
|
||||
wget -q -O "$gogs_tarball" "$GOGS_BINARY_URL" \
|
||||
|| ynh_die "Unable to download Gogs tarball"
|
||||
sudo tar xf "$gogs_tarball" -C "$DESTDIR" --strip-components 1 \
|
||||
sudo unzip "$gogs_tarball" -d "$DESTDIR" \
|
||||
|| ynh_die "Unable to extract Gogs tarball"
|
||||
rm -f "$gogs_tarball"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue