Commit 01b88cb9 authored by Andrei Tropichev's avatar Andrei Tropichev Committed by Vitaly Lipatov

epm play gitkraken without repack

epm play script for install GitKraken Client from https://www.gitkraken.com/
parent 47540fac
#!/bin/sh
PKGNAME=gitkraken
SUPPORTEDARCHES="x86_64"
DESCRIPTION="GitKraken Client from the official site"
URL="https://www.gitkraken.com/"
. $(dirname $0)/common.sh
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
epm install "$PKGURL"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment