Skip to content

Commit dc57f64

Browse files
committed
IOS-19 fix: 스크립트 수정 및 dependency 타입 수정
1 parent 67121f5 commit dc57f64

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

Tuist/Package.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ let packageSettings = PackageSettings(
88
// Customize the product types for specific package product
99
// Default is .staticFramework
1010
// productTypes: ["Alamofire": .framework,]
11-
productTypes: [
12-
"Alamofire": .framework,
13-
"ComposableArchitecture": .framework
14-
]
11+
productTypes: [:]
1512
)
1613
#endif
1714

etc/script/bootstrap.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,17 @@ echo "\n[3] > Getting development Cert and Provisioning ...\n"
2828
fastlane match development --readonly
2929
fastlane match appstore --readonly
3030

31+
echo "\n[4] > mise install and use tuist ...\n"
32+
mise install tuist
33+
34+
35+
# 템플릿 설치
36+
echo "\n[5] > Installing template ...\n"
37+
./etc/script/install_template.sh
38+
39+
echo "\n[6] > Generate script ...\n"
40+
chmod +x ./etc/script/generate.sh
41+
./etc/script/generate.sh
42+
3143
echo -e "${GREEN}✅ Bootstrap script finished!${NC}"
3244

etc/script/generate.sh

100644100755
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,12 @@ set -e
1010
echo "${YELLOW}=== Generate Script ===${NC}"
1111
echo ""
1212

13-
echo "\n[1] > mise install and use tuist ...\n"
14-
mise install tuist
15-
16-
17-
# 템플릿 설치
18-
echo "\n[2] > Installing template ...\n"
19-
./etc/script/install_template.sh
20-
2113
# Tuist install 실행
22-
echo "\n[3] > Installing Tuist ...\n"
14+
echo "\n[1] > Installing Tuist ...\n"
2315
tuist install --path "${WORKSPACE_DIR}"
2416

2517
# Tuist generate 실행 및 프로젝트 open
26-
echo "\n[4] > Generating Tuist ...\n"
18+
echo "\n[2] > Generating Tuist ...\n"
2719
TUIST_ROOT_DIR=$PWD tuist generate
2820

2921
echo "${GREEN}✅ Generate script finished!${NC}"

0 commit comments

Comments
 (0)