From 2a0437f416f94596e4e3b403603dbd028727742d Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Fri, 4 Jul 2025 09:02:19 +0900 Subject: [PATCH] Improve path inclusion --- unix/get_zx | 2 +- unix/install | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/unix/get_zx b/unix/get_zx index 2fc94d9..13930ea 100755 --- a/unix/get_zx +++ b/unix/get_zx @@ -3,7 +3,7 @@ # A convenience script that will download the ZX installer, unpack it, and clean up. # For maximum portability this script uses the gzipped package version. -version=0.13.6 +version=0.14.0 zx="zx-$version" tarball="$zx.tar.gz" target="https://zxq9.com/projects/zomp/$tarball" diff --git a/unix/install b/unix/install index 7c2f91d..7a3ef4a 100755 --- a/unix/install +++ b/unix/install @@ -35,13 +35,6 @@ if [[ ":$PATH:" == *":$bin:"* ]] export PATH="$bin:$PATH" fi -if [[ ":$PATH:" == *":$HOME/bin:"* ]] -then - echo "'$HOME/bin' is in '$PATH' -- skipping" -else - export PATH="$HOME/bin:$PATH" -fi - for rc in ~/.bashrc ~/.bash_profile ~/.profile ~/.zshrc ~/.zprofile ~/.zshenv do if [[ -f "$rc" ]]