From b3ef3bc141b34276d85681a327503c552506ea28 Mon Sep 17 00:00:00 2001 From: Damien Dart Date: Tue, 1 Oct 2024 10:01:10 +0100 Subject: [PATCH] Fix PATH-environment-variable-updating gubbins. --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.profile b/.profile index 273103a..9af054a 100644 --- a/.profile +++ b/.profile @@ -24,7 +24,7 @@ while read -r ITEM; do # snippet from . case ":$PATH:" in *:$ITEM:*) ;; - *) export PATH="$PATH:$PATH" ;; + *) export PATH="$ITEM:$PATH" ;; esac fi done <