diff --git a/CHANGELOG.md b/CHANGELOG.md index aa151e5b8..310feb302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ Please, check out guidelines: https://keepachangelog.com/en/1.0.0/ - Set Code Sign On Copy to true for Embed Frameworks https://github.com/tuist/tuist/pull/333 by @dangthaison91 - Fixing files getting mistaken for folders https://github.com/tuist/tuist/pull/338 by @kwridan +- Updating init template to avoid warnings https://github.com/tuist/tuist/pull/339 by @kwridan ## 0.14.0 diff --git a/Sources/TuistKit/Commands/InitCommand.swift b/Sources/TuistKit/Commands/InitCommand.swift index 920e55ed5..4111a47f3 100644 --- a/Sources/TuistKit/Commands/InitCommand.swift +++ b/Sources/TuistKit/Commands/InitCommand.swift @@ -140,10 +140,13 @@ class InitCommand: NSObject, Command { bundleId: "io.tuist.\(name)", infoPlist: "Info.plist", sources: ["Sources/**"], - resources: ["Resources/**"], + resources: [ + /* Path to resouces can be defined here */ + // "Resources/**" + ], dependencies: [ /* Target dependencies can be defined here */ - /* .framework(path: "framework") */ + // .framework(path: "Frameworks/MyFramework.framework") ]), Target(name: "\(name)Tests", platform: .\(platform.caseValue),