Github-CLI: use pkg-install

pull/906/head
Botspot 4 years ago
parent 057bb7b61a
commit 3f2e545768

@ -10,11 +10,13 @@ function error {
cd $HOME
#remove old deb (if exists)
rm -f gh*linux_armv6.deb
rm -f ~/gh.deb
#download
wget -O gh.deb https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_armv6.deb || error 'Failed to download github-cli!'
wget -O ~/gh.deb https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_armv6.deb || error 'Failed to download github-cli!'
#install
"${DIRECTORY}/api" apt_lock_wait
sudo apt -fy install ./gh.deb || error "Failed to install gh!"
"${DIRECTORY}/pkg-install" "$HOME/gh.deb" "$(dirname "$0")" || error "Failed to install turbowarp.deb!"
#clean up
rm -f gh.deb
rm -f ~/gh.deb

@ -10,11 +10,13 @@ function error {
cd $HOME
#remove old deb (if exists)
rm -f gh*linux_arm64.deb
rm -f ~/gh.deb
#download
wget -O gh.deb https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_arm64.deb || error 'Failed to download github-cli!'
wget -O ~/gh.deb https://github.com/cli/cli/releases/download/v1.13.1/gh_1.13.1_linux_arm64.deb || error 'Failed to download github-cli!'
#install
"${DIRECTORY}/api" apt_lock_wait
sudo apt -fy install ./gh.deb || error "Failed to install gh!"
"${DIRECTORY}/pkg-install" "$HOME/gh.deb" "$(dirname "$0")" || error "Failed to install turbowarp.deb!"
#clean up
rm -f gh.deb
rm -f ~/gh.deb

@ -8,4 +8,4 @@ function error {
}
#uninstall
sudo apt -y purge gh || error "Failed to uninstall gh!"
"${DIRECTORY}/purge-installed" "$(dirname "$0")" || error "Failed to uninstall gh!"

Loading…
Cancel
Save