From 0ff8d4e2ea89c4cab449d780081dd1903eaa0746 Mon Sep 17 00:00:00 2001 From: baegteun Date: Sun, 10 Mar 2024 11:24:25 +0900 Subject: [PATCH 1/2] =?UTF-8?q?:hammer:=20::=20[#455]=20Setup.sh=20/=20env?= =?UTF-8?q?=EC=97=90=20mise=20activate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Scripts/Setup.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Scripts/Setup.sh b/Scripts/Setup.sh index 03eb40a24..12f5b97cc 100644 --- a/Scripts/Setup.sh +++ b/Scripts/Setup.sh @@ -29,7 +29,10 @@ 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 From 28c57aaa352a70feff02e26f827bcf3a0ec47968 Mon Sep 17 00:00:00 2001 From: baegteun Date: Sun, 10 Mar 2024 20:25:29 +0900 Subject: [PATCH 2/2] =?UTF-8?q?:pencil2:=20::=20Setup.sh=20/=20[#455]=20wh?= =?UTF-8?q?ice=20->=20which=20=EC=98=A4=ED=83=88=EC=9E=90=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Scripts/Setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Setup.sh b/Scripts/Setup.sh index 12f5b97cc..ff2394c1e 100644 --- a/Scripts/Setup.sh +++ b/Scripts/Setup.sh @@ -37,7 +37,7 @@ else tuist version fi -if whice carthage > /dev/null; then +if which carthage > /dev/null; then echo "✅ Carthage가 설치되어있어요." else echo "❌ Carthage가 설치되어있지 않아요. Carthage 설치를 시작해요."