From 2177bc0ae418a6b6e722cc73df56c39021faa412 Mon Sep 17 00:00:00 2001 From: a Date: Sun, 9 Apr 2023 22:36:04 -0500 Subject: [PATCH] installsh --- cmd/packfont/main.go | 1 - scripts/install.sh | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 100755 scripts/install.sh diff --git a/cmd/packfont/main.go b/cmd/packfont/main.go index 77bbff2..84a3af0 100644 --- a/cmd/packfont/main.go +++ b/cmd/packfont/main.go @@ -8,7 +8,6 @@ import ( ) func main() { - if len(os.Args) != 3 { fmt.Println("Please specify font path and name") os.Exit(1) diff --git a/scripts/install.sh b/scripts/install.sh deleted file mode 100755 index d5500f2..0000000 --- a/scripts/install.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env bash - -set -e - -echo "Determining platform..." -platform=$(uname | tr '[:upper:]' '[:lower:]') -echo "Finding latest release..." -asset=$(curl --silent https://api.github.com/repos/liamg/darktile/releases/latest | jq -r ".assets[] | select(.name | contains(\"${platform}\")) | .url") -echo "Downloading latest release for your platform..." -curl -s -L -H "Accept: application/octet-stream" "${asset}" --output /tmp/darktile -echo "Installing darktile..." -chmod +x /tmp/darktile -installdir="${HOME}/bin/" -if [ "$EUID" -eq 0 ]; then - installdir="/usr/local/bin/" -fi -mkdir -p $installdir -mv /tmp/darktile "${installdir}/darktile" -which darktile &> /dev/null || (echo "Please add ${installdir} to your PATH to complete installation!" && exit 1) -echo "Installation complete!" \ No newline at end of file