Skip to content

Commit

Permalink
fix(install): mistakes regarding paths etc
Browse files Browse the repository at this point in the history
  • Loading branch information
caspiano committed Jun 17, 2022
1 parent 714a339 commit 298142b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ mac() {

brew install stow
bash update_crystalline_osx.sh
defaults write com.visualstudio.code.oss ApplePressAndHoldEnabled -bool false
}

linux() {
Expand Down Expand Up @@ -49,16 +50,15 @@ function run_stow() {
check_stow_install

echo "running stow"
# Stow everything except install script
stow --target=${HOME} *[^.sh]

defaults write com.visualstudio.code.oss ApplePressAndHoldEnabled -bool false
# Stow everything except install script
stow --target=${HOME} */
}

[[ ! -d "${HOME}/.asdf" ]] && git clone https://github.com/asdf-vm/asdf.git "${HOME}/.env"
[[ ! -d "${HOME}/.asdf" ]] && git clone https://github.com/asdf-vm/asdf.git "${HOME}/.asdf"

run_stow

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

cargo install ripgrep bottom
source "$HOME/.cargo/env" && cargo install ripgrep bottom

0 comments on commit 298142b

Please sign in to comment.