You need to sign in or sign up before continuing.
gitkraken.sh 464 Bytes
Newer Older
1 2 3 4
#!/bin/sh

PKGNAME=gitkraken
SUPPORTEDARCHES="x86_64"
5
VERSION="$2"
6 7 8 9 10
DESCRIPTION="GitKraken Client from the official site"
URL="https://www.gitkraken.com/"

. $(dirname $0)/common.sh

11 12
warn_version_is_not_supported

13 14 15 16 17 18 19 20 21 22
pkgtype=$(epm print info -p)
case $pkgtype in
    rpm)
        PKGURL="https://release.gitkraken.com/linux/gitkraken-amd64.rpm"
        ;;
    *)
        PKGURL="https://release.gitkraken.com/linux/gitkraken-amd64.deb"
        ;;
esac

23
install_pkgurl