aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sh/.config/profile.d/20-perl.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-07-02 11:04:41 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-07-02 11:04:41 -0500
commit48f3c0166a627340bc287179c6ab4b02d689f9e6 (patch)
tree9aff0af364a7dfc25a2531ed451b9d7b409d7518 /sh/.config/profile.d/20-perl.sh
parente0bd7e033d384d162f937b823f6d12d0de8f6d0d (diff)
fix: prepend path to allow for command overriding
Diffstat (limited to 'sh/.config/profile.d/20-perl.sh')
-rw-r--r--sh/.config/profile.d/20-perl.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/.config/profile.d/20-perl.sh b/sh/.config/profile.d/20-perl.sh
index 13d5e0b..330ef9f 100644
--- a/sh/.config/profile.d/20-perl.sh
+++ b/sh/.config/profile.d/20-perl.sh
@@ -6,6 +6,6 @@ export PERL5LIB="$PERL_LOCAL_LIB_ROOT/lib/perl5"
export PERL_MB_OPT="--install_base '$PERL_LOCAL_LIB_ROOT'"
export PERL_MM_OPT="INSTALL_BASE=$PERL_LOCAL_LIB_ROOT"
-append_path "$PERL_LOCAL_LIB_ROOT/bin"
+prepend_path "$PERL_LOCAL_LIB_ROOT/bin"
export PATH