Skip to content

Commit b746e05

Browse files
committed
[fix] #178 템플릿 수정
1 parent ce56a7d commit b746e05

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Tuist/Templates/framework/framework.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ let frameworkTemplate = Template(
2020
.file(
2121
path: "Projects/\(frameworkProjectAttribute)/\(frameworkTargetAttribute)/Sources/Source.swift",
2222
templatePath: "Dummy.stencil"),
23-
.file(
24-
path: "Projects/\(frameworkProjectAttribute)/\(frameworkTargetAttribute)/Resources/Resource.swift",
25-
templatePath: "Dummy.stencil")
23+
.string(
24+
path: "Projects/\(frameworkProjectAttribute)/\(frameworkTargetAttribute)/Resources/.gitkeep",
25+
contents: "")
2626
]
2727
)

Tuist/Templates/project/project.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ let projectTemplate = Template(
2222
.file(
2323
path: "Projects/\(nameAttribute)/Sources/Source.swift",
2424
templatePath: "Dummy.stencil"),
25-
.file(
26-
path: "Projects/\(nameAttribute)/Resources/Resource.swift",
27-
templatePath: "Dummy.stencil"),
25+
.string(
26+
path: "Projects/\(nameAttribute)/Resources/.gitkeep",
27+
contents: ""),
2828
]
2929
)

0 commit comments

Comments
 (0)