Skip to content

Commit

Permalink
Improve just installation via yarn commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Splines committed Jul 4, 2024
1 parent d606cf5 commit 72ba911
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"globals": "^15.1.0"
},
"scripts": {
"install-just-to-bin": "curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/bin && echo 'export PATH=\"$PATH:$HOME/bin\" # for \"just\" binary' >> ~/.bashrc",
"remove-just-from-bin": "rm -rf ~/bin/just --interactive"
"just-install": "curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/bin && echo 'export PATH=\"$PATH:$HOME/bin\" # for \"just\" binary' >> ~/.bashrc && echo '(!) Make sure to restart your current shell'",
"just-remove": "rm -r ~/bin/just --interactive",
"just-update": "echo 'We remove just from ~/bin/just, then install it again.' && rm -r ~/bin/just && yarn just-install"
}
}

0 comments on commit 72ba911

Please sign in to comment.