Fix ordering of elements in PATH

This commit is contained in:
2022-01-04 18:13:28 +01:00
parent 83d7386b25
commit 465a413ae9
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ _path=(
)
for part in ${_path[@]} ; do
PATH="$PATH:${part}"
PATH="${part}:$PATH"
done
export PATH