From f88ee2491be52cd48b4d79b98c18f86a83109ead Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Tue, 13 Jul 2021 12:49:01 -0500 Subject: revert: removed unused files --- gh-cli/install | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100755 gh-cli/install (limited to 'gh-cli') diff --git a/gh-cli/install b/gh-cli/install deleted file mode 100755 index 918f587..0000000 --- a/gh-cli/install +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bash - -app='gh-cli' - -current_version=$(gh --version >&/dev/null | grep -oEm1 'v[0-9\.]+') -current_version=${current_version#v} - -if [ -z "$current_version" ]; then - current_version=0.0.0 - echo "$app: not installed" -else - echo "$app: found $current_version" -fi - -version=$(curl -s "https://api.github.com/repos/cli/cli/releases" | grep -oEm1 'v[0-9\.]+') -version=${version#v} - -if [[ "$version" == "$current_version" ]]; then - echo "$app: up-to-date" -else - echo "$app: new version found $version" - - arch="$(dpkg --print-architecture)" - arch="${arch/hf/v6}" - - tempdir="$(mktemp -d)" - - echo "$app: downloading..." - - curl -sSLo "${tempdir}/gh_${version}_linux_${arch}.deb" "https://github.com/cli/cli/releases/download/v${version}/gh_${version}_linux_${arch}.deb" - - echo "$app: installing..." - - sudo apt-get install "${tempdir}/gh_${version}_linux_${arch}.deb" - - if [ $? -ne 0 ]; then - echo "$app: Failed to install" - else - echo "$app: installed" - fi - - rm -rf $tempdir -fi -- cgit v1.2.3-70-g09d2