Skip to content

Commit

Permalink
Update Configuration Extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Dec 21, 2024
1 parent 9a5d6b6 commit 4602e9d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ extension ProjectDescription.Configuration {
name configurationName: ConfigurationName,
settings: SettingsDictionary = [:]
) -> ProjectDescription.Configuration {
let xcconfigPath = Path.path("\(target.path.pathString)/\(deployTarget.rawValue).xcconfig")
let xcconfigPath = Path.path("\(target.path.pathString)/\(configurationName.rawValue).xcconfig")
return .debug(
name: deployTarget.configurationName,
name: configurationName,
settings: settings,
xcconfig: xcconfigPath
)
Expand All @@ -34,7 +34,7 @@ extension ProjectDescription.Configuration {
name configurationName: ConfigurationName,
settings: SettingsDictionary = [:]
) -> ProjectDescription.Configuration {
let xcconfigPath = Path.path("\(target.path.pathString)/\(deployTarget.rawValue).xcconfig")
let xcconfigPath = Path.path("\(target.path.pathString)/\(configurationName.rawValue).xcconfig")
return .release(
name: configurationName,
settings: settings,
Expand Down

0 comments on commit 4602e9d

Please sign in to comment.