Skip to content

Commit

Permalink
enter: fix host/container PATH order, Fix #1145
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Di Maio <[email protected]>
  • Loading branch information
89luca89 committed Feb 3, 2024
1 parent f7e8532 commit 31f0c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrobox-enter
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ generate_command() {
done
# append additional standard paths to host PATH to get final container_paths
if [ -n "${container_paths}" ]; then
container_paths="${container_paths}:${PATH}"
container_paths="${PATH}:${container_paths}"
else
container_paths="${PATH}"
fi
Expand Down

0 comments on commit 31f0c52

Please sign in to comment.