My GitKraken does not complete the upgrade process, it gets caught on the download screen.
A few weeks ago it worked normally
Ubuntu Mate 18.04
My GitKraken does not complete the upgrade process, it gets caught on the download screen.
A few weeks ago it worked normally
Ubuntu Mate 18.04
I had a similar problem, so I installed GitKraken using command line:
Open the Ubuntu's Terminal app
Download the Linux deb
package from https://www.gitkraken.com/download:
wget https://release.gitkraken.com/linux/gitkraken-amd64.deb
Install the deb package:
sudo dpkg -i ./gitkraken-amd64.deb
Better yet, put all that into a gitkraken_update.sh
script:
#!/bin/bash
#
#
echo " Installing GitKraken..."
cd ${HOME}/Downloads
wget https://release.gitkraken.com/linux/gitkraken-amd64.deb
sudo dpkg -i ./gitkraken-amd64.deb
echo " Done."
you just download te install package from the oficial page web(https://www.gitkraken.com/download) and install, thats work for me, sorry for my english