diff --git a/Scripts/Setup.sh b/Scripts/Setup.sh index 03eb40a24..ff2394c1e 100644 --- a/Scripts/Setup.sh +++ b/Scripts/Setup.sh @@ -29,12 +29,15 @@ if which tuist > /dev/null; then echo "✅ Tuist가 설치되어있어요." else echo "❌ Tuist가 설치되어있지 않아요. Tuist 설치를 시작해요." - brew install mise + curl https://mise.run | sh + echo 'eval "$(~/.local/bin/mise activate --shims zsh)"' >> ~/.zshrc + source ~/.zshrc + mise install tuist tuist version fi -if whice carthage > /dev/null; then +if which carthage > /dev/null; then echo "✅ Carthage가 설치되어있어요." else echo "❌ Carthage가 설치되어있지 않아요. Carthage 설치를 시작해요."