aboutsummaryrefslogtreecommitdiff
path: root/.config/shell/sources
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-02-17 18:44:01 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-02-17 18:52:35 +0100
commit088cddf68b8bc43ff6d79165e0bb2acc490685a9 (patch)
treea4b9930b3e3b5b3e25ca2c84ea04c0bfe2a1a75c /.config/shell/sources
parent0f6150a0984ef6998fa0808f52c28ce5d5d6941d (diff)
Include /usr/local/perl6 paths if they exist
Diffstat (limited to '.config/shell/sources')
-rw-r--r--.config/shell/sources7
1 files changed, 7 insertions, 0 deletions
diff --git a/.config/shell/sources b/.config/shell/sources
index aa3e273..4b7c90a 100644
--- a/.config/shell/sources
+++ b/.config/shell/sources
@@ -33,6 +33,13 @@ PATH="${PATH}:/usr/local/sbin"
PATH="${PATH}:/usr/games/bin"
PATH="${PATH}:/opt/bin"
+# Raku stuff
+if [ -d "/usr/local/share/perl6" ]
+then
+ PATH="$PATH:/usr/local/share/perl6/site/bin"
+ PATH="$PATH:/usr/local/share/perl6/vendor/bin"
+fi
+
# Load color definitions if they exist
if [ -f "$HOME/.config/shell/colors/$SHORTSHELL" ]
then