Skip to content

Commit

Permalink
Merge pull request #456 from wakmusic/fix/455-make-setup-tuist-comman…
Browse files Browse the repository at this point in the history
…d-not-found

🔀 :: (#455) make setup 후 tuist command를 못찾는 버그 해결
  • Loading branch information
baekteun authored Mar 12, 2024
2 parents 250185c + 28c57aa commit cbcb402
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Scripts/Setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 설치를 시작해요."
Expand Down

0 comments on commit cbcb402

Please sign in to comment.