summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorruki <[email protected]>2024-05-16 19:54:31 +0800
committerGitHub <[email protected]>2024-05-16 19:54:31 +0800
commitfdb3168de1e3e29aa23b88a692ad8c3d7e9f1b83 (patch)
treed7325722719f57dcab069b50d106309f932ec3f5 /scripts
parent95f874011c27d1145e14b7bb43b0dd578fa6c026 (diff)
parentb3f9bd3dc137f44d84aafc7c28d8495ede9be580 (diff)
Merge pull request #5108 from wanzzhehe/master
Fix adding duplicate paths to PATH during installation
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/get.sh b/scripts/get.sh
index 7cfe5223d..4b9c80156 100755
--- a/scripts/get.sh
+++ b/scripts/get.sh
@@ -237,7 +237,7 @@ fi
#
install_profile() {
export XMAKE_ROOTDIR="$prefix/bin"
- export PATH="$XMAKE_ROOTDIR:$PATH"
+ [[ "$PATH" =~ (^|:)"$XMAKE_ROOTDIR"(:|$) ]] || export PATH="$XMAKE_ROOTDIR:$PATH"
xmake --version
xmake update --integrate
}