Skip to content

Commit

Permalink
Fixed merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Sep 10, 2024
1 parent 8fd3b54 commit c381221
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ struct WaitForNotarizationCommand: AsyncParsableCommand {

parsed.log("Tagging.")
let git = GitRunner()
let tagResult = git.run([
let tagResult = git.run([
"tag", parsed.versionTag, "-f", "-m", "Uploaded with \(CommandLine.name)",
])
Expand Down
2 changes: 1 addition & 1 deletion Sources/ReleaseTools/Runners/XCodeBuildRunner.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class XCodeBuildRunner: Runner {
let schemes = try decoder.decode(SchemesSpec.self, from: output)
return schemes.workspace.schemes
} else {
print(await result.stderr)
print(await result.stderr.string)
}
}

Expand Down

0 comments on commit c381221

Please sign in to comment.