summaryrefslogtreecommitdiffstatshomepage
path: root/gh-cli
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-07-13 12:49:01 -0500
committerToby Vincent <tobyv13@gmail.com>2021-07-13 12:49:01 -0500
commitf88ee2491be52cd48b4d79b98c18f86a83109ead (patch)
treeb401d2c04b2cb84e4b83a32a62da157438a7abce /gh-cli
parent8e75c580522c22f126d52a40a56c43b3e5b802f1 (diff)
revert: removed unused files
Diffstat (limited to 'gh-cli')
-rwxr-xr-xgh-cli/install43
1 files changed, 0 insertions, 43 deletions
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