Skip to content

Commit

Permalink
Merge pull request #820 from m-sugawara/fix-rswift-ignore-path
Browse files Browse the repository at this point in the history
Fix sourceRootURL
  • Loading branch information
tomlokhorst committed Apr 16, 2023
2 parents 589493f + 28d68f7 commit 68cf4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/rswift/App.swift
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ extension App {
let sourceTreeURLs = SourceTreeURLs(
builtProductsDirURL: URL(fileURLWithPath: processInfo.environment[EnvironmentKeys.builtProductsDir] ?? EnvironmentKeys.builtProductsDir),
developerDirURL: URL(fileURLWithPath: processInfo.environment[EnvironmentKeys.developerDir] ?? EnvironmentKeys.developerDir),
sourceRootURL: URL(fileURLWithPath: processInfo.environment[EnvironmentKeys.sourceRoot] ?? EnvironmentKeys.sourceRoot),
sourceRootURL: URL(fileURLWithPath: processInfo.environment[EnvironmentKeys.sourceRoot] ?? ""),
sdkRootURL: URL(fileURLWithPath: processInfo.environment[EnvironmentKeys.sdkRoot] ?? EnvironmentKeys.sdkRoot),
platformURL: URL(fileURLWithPath: processInfo.environment[EnvironmentKeys.platformDir] ?? EnvironmentKeys.platformDir)
)
Expand Down

0 comments on commit 68cf4d9

Please sign in to comment.