From 7f622ac439ac9aac93cd2c2fd1fb17ad2cd00e97 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 21 Jul 2022 11:17:09 -0500 Subject: [PATCH] Add juliaup support --- dot_profile | 5 +++++ dot_zshenv.tmpl | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dot_profile b/dot_profile index 036b64b..af1c378 100644 --- a/dot_profile +++ b/dot_profile @@ -2,6 +2,11 @@ # User specific environment export PATH="$HOME/.local/bin:$HOME/bin:$PATH" +# juliaup setup +if [ -d $HOME/.julia/juliaup/bin ]; then + export PATH="$HOME/.julia/juliaup/bin:$PATH" +fi + # Linuxbrew setup if [ -d $HOME/../linuxbrew/.linuxbrew ]; then BREWPATH=$HOME/../linuxbrew/.linuxbrew diff --git a/dot_zshenv.tmpl b/dot_zshenv.tmpl index 2a79f32..b03aab1 100644 --- a/dot_zshenv.tmpl +++ b/dot_zshenv.tmpl @@ -5,6 +5,11 @@ fpath+=($HOME/.local/share/zsh/5.8/functions) {{- end }} +# juliaup setup +if [ -d $HOME/.julia/juliaup/bin ]; then + export PATH="$HOME/.julia/juliaup/bin:$PATH" +fi + # Linuxbrew setup if [ -d $HOME/../linuxbrew/.linuxbrew ]; then BREWPATH=$HOME/../linuxbrew/.linuxbrew