Skip to content

Commit

Permalink
Fix PATH-environment-variable-updating gubbins.
Browse files Browse the repository at this point in the history
  • Loading branch information
damiendart committed Oct 1, 2024
1 parent 494a7e6 commit b3ef3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .profile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ while read -r ITEM; do
# snippet from <https://unix.stackexchange.com/a/32054>.
case ":$PATH:" in
*:$ITEM:*) ;;
*) export PATH="$PATH:$PATH" ;;
*) export PATH="$ITEM:$PATH" ;;
esac
fi
done <<PATHS
Expand Down

0 comments on commit b3ef3bc

Please sign in to comment.