Skip to content

Commit

Permalink
Fix PATH order at functions.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
sulincix authored Jul 28, 2023
1 parent b0410d1 commit 5d2cd25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh/functions.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ case "$_PREFIX" in
"$_PKG_PREFIX"|"$_LOCAL_PREFIX") ;;
*) _PATH="$_PATH:$_PREFIX/bin:$_PREFIX/sbin";;
esac
_PATH="$_PATH":/bin:/sbin:/usr/bin:/usr/sbin
_PATH="$_PATH":/usr/sbin:/sbin:/usr/bin:/bin

if [ -n "$_PKG_PREFIX" ]; then
_PATH="$_PATH:$_PKG_PREFIX/bin:$_PKG_PREFIX/sbin"
Expand Down

0 comments on commit 5d2cd25

Please sign in to comment.