From f46865555773879dc4effadda753bb1f7cc141b8 Mon Sep 17 00:00:00 2001 From: Steven van den Broek Date: Sat, 17 Jul 2021 12:07:44 +0200 Subject: [PATCH] Try to fix ghr --- .github/scripts/install-ghr.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/scripts/install-ghr.sh b/.github/scripts/install-ghr.sh index 68288b0..ae1ad14 100755 --- a/.github/scripts/install-ghr.sh +++ b/.github/scripts/install-ghr.sh @@ -13,8 +13,7 @@ else echo "Installing ghr" URL="https://github.com/tcnksm/ghr/releases/download/v0.5.4/ghr_v0.5.4_${ARCH}_386.zip" curl -L ${URL} > ghr.zip - mkdir -p "$HOME/bin" - export PATH="$HOME/bin:$PATH" - unzip ghr.zip -d "$HOME/bin" + mkdir -p "$HOME/.local/bin" + unzip ghr.zip -d "$HOME/.local/bin/" rm ghr.zip fi