Skip to content

Commit

Permalink
maybe correct bash invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Jul 11, 2024
1 parent 6fa36ab commit d1f0ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plogon/BuildProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ private async Task<PluginDiffSet> GetPluginDiff(DirectoryInfo workDir, BuildTask
async Task<string?> MakeAndUploadSemantic()
{
var diffPsi = new ProcessStartInfo("/bin/bash",
$"(set -o pipefail ; git diff --submodule=diff {haveCommit}..{wantCommit} | terminal-to-html -preview)")
$"-c \"set -o pipefail && git diff --submodule=diff {haveCommit}..{wantCommit} | terminal-to-html -preview\"")
{
RedirectStandardOutput = true,
WorkingDirectory = workDir.FullName,
Expand Down

0 comments on commit d1f0ea8

Please sign in to comment.