From e52397aa464a118ec90e9d6e9f6898d6a2bf2416 Mon Sep 17 00:00:00 2001 From: Carlos Aldana Date: Sat, 15 Feb 2025 19:03:16 -0800 Subject: [PATCH] adds path to asdf installs --- fedora/dev.sh | 1 + ubuntu/dev.sh | 3 +++ 2 files changed, 4 insertions(+) diff --git a/fedora/dev.sh b/fedora/dev.sh index 12c6655..a0a067c 100644 --- a/fedora/dev.sh +++ b/fedora/dev.sh @@ -42,6 +42,7 @@ brew install gcc brew install asdf echo -e "\n. \"$(brew --prefix asdf)/libexec/asdf.sh\"" >>~/.bashrc echo -e "\n. \"$(brew --prefix asdf)/etc/bash_completion.d/asdf.bash\"" >>~/.bashrc +echo "export PATH=\"\$HOME/.asdf/shims:\$PATH\"" >>~/.bashrc asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git diff --git a/ubuntu/dev.sh b/ubuntu/dev.sh index 5b39af3..82a3dd4 100644 --- a/ubuntu/dev.sh +++ b/ubuntu/dev.sh @@ -19,8 +19,11 @@ brew install asdf echo -e "\n. \"$(brew --prefix asdf)/libexec/asdf.sh\"" >>~/.bashrc echo -e "\n. \"$(brew --prefix asdf)/etc/bash_completion.d/asdf.bash\"" >>~/.bashrc +echo "export PATH=\"$HOME/.asdf/shims:$PATH\"" >>~/.bashrc + asdf plugin add ruby https://github.com/asdf-vm/asdf-ruby.git asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git +echo "export PATH=\"\$HOME/.asdf/shims:\$PATH\"" >>~/.bashrc sudo apt-get install -y autoconf bison build-essential libssl-dev libyaml-dev libreadline-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev ######################################## Languages