Skip to content

Commit 156b380

Browse files
committed
fix
1 parent bfde176 commit 156b380

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitVersion.App.Tests/Helpers/ArgumentBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ public override string ToString()
1414

1515
if (!this.WorkingDirectory.IsNullOrWhiteSpace())
1616
{
17-
arguments.Append(" /targetpath \"").Append(this.WorkingDirectory).Append('\"');
17+
arguments.Append(" /targetpath \'").Append(this.WorkingDirectory).Append('\'');
1818
}
1919

2020
if (!this.LogFile.IsNullOrWhiteSpace())
2121
{
22-
arguments.Append(" /l \"").Append(this.LogFile).Append('\"');
22+
arguments.Append(" /l \'").Append(this.LogFile).Append('\'');
2323
}
2424

2525
arguments.Append(additionalArguments);

0 commit comments

Comments
 (0)