Skip to content

Commit

Permalink
Fixes compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejpiotrowski89 committed Nov 30, 2021
1 parent 9ea44ad commit ea38ef6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Sources/rswift/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ let generate = command(
CommanderOptions.target,
CommanderOptions.bundleIdentifier,
CommanderOptions.productModuleName,
CommanderOptions.hostingBundleName,
CommanderOptions.infoPlistFile,
CommanderOptions.codeSignEntitlements,

Expand All @@ -213,6 +214,7 @@ let generate = command(
targetOption,
bundleIdentifierOption,
productModuleNameOption,
hostingBundleNameOption,
infoPlistFileOption,
codeSignEntitlementsOption,

Expand Down Expand Up @@ -241,6 +243,7 @@ let generate = command(
let targetName = try targetOption ?? processInfo.environmentVariable(name: EnvironmentKeys.target)
let bundleIdentifier = try bundleIdentifierOption ?? processInfo.environmentVariable(name: EnvironmentKeys.bundleIdentifier)
let productModuleName = try productModuleNameOption ?? processInfo.environmentVariable(name: EnvironmentKeys.productModuleName)
let hostingBundleName = try hostingBundleNameOption ?? processInfo.environmentVariable(name: EnvironmentKeys.hostingBundleName)
let infoPlistFile = infoPlistFileOption ?? processInfo.environment[EnvironmentKeys.infoPlistFile]
let codeSignEntitlements = codeSignEntitlementsOption ?? processInfo.environment[EnvironmentKeys.codeSignEntitlements]

Expand Down

0 comments on commit ea38ef6

Please sign in to comment.