Skip to content

Commit 02f047a

Browse files
authored
Fix logging of "Running..." for plugins (#7303)
1 parent 2c5c90e commit 02f047a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Build/BuildOperation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ public final class BuildOperation: PackageStructureDelegate, SPMBuildCore.BuildS
656656
var derivedFiles: [AbsolutePath] = []
657657
var prebuildOutputDirs: [AbsolutePath] = []
658658
for command in pluginResult.prebuildCommands {
659-
self.observabilityScope.emit(info: "Running" + (command.configuration.displayName ?? command.configuration.executable.basename))
659+
self.observabilityScope.emit(info: "Running " + (command.configuration.displayName ?? command.configuration.executable.basename))
660660

661661
// Run the command configuration as a subshell. This doesn't return until it is done.
662662
// TODO: We need to also use any working directory, but that support isn't yet available on all platforms at a lower level.

0 commit comments

Comments
 (0)