Created
May 17, 2025 12:43
-
-
Save rikiTada/f53a5a884fbb2d41262c26667a275d5e to your computer and use it in GitHub Desktop.
miseのインストールスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl https://mise.run | sh | |
~/.local/bin/mise --version | |
# output 👉 mise 2024.x.x | |
# bash install | |
echo 'eval "$(~/.local/bin/mise activate bash)"' >> ~/.bashrc | |
# local install (for the current .mise.toml) | |
# mise use node@22 | |
# If the `.mise.toml` file is in the root of the project, the environment will be installed. | |
mise i | |
echo "mise setup done! 🐈⬛" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
waaaaa!