summaryrefslogtreecommitdiff
path: root/config/bash_profile
diff options
context:
space:
mode:
Diffstat (limited to 'config/bash_profile')
-rw-r--r--config/bash_profile7
1 files changed, 5 insertions, 2 deletions
diff --git a/config/bash_profile b/config/bash_profile
index ffb5007..1613f56 100644
--- a/config/bash_profile
+++ b/config/bash_profile
@@ -7,7 +7,7 @@ if test -z "$XDG_RUNTIME_DIR"; then
fi
if [[ -f ~/.bashrc ]] ; then
- . ~/.bashrc
+ . ~/.bashrc
fi
if [ -d ~/.ghcup/bin ]; then
@@ -26,6 +26,10 @@ if [ -d ~/.mcabal/bin ]; then
export PATH=~/.mcabal/bin:$PATH
fi
+if [ -d ~/.local/musl/bin ]; then
+ export PATH=~/.local/musl/bin:$PATH
+fi
+
if [ -d ~/.local/bin ]; then
export PATH=~/.local/bin:$PATH
fi
@@ -33,4 +37,3 @@ fi
if [ -d /usr/local/lib/pkgconfig ]; then
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
fi
-