Skip to content

Commit 2deb087

Browse files
committed
w
1 parent 55d0d55 commit 2deb087

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/GitVersion.App/ArgumentParser.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,7 @@ private void ParseTargetPath(Arguments arguments, string? name, IReadOnlyList<st
160160
if (name.IsSwitch("targetpath"))
161161
{
162162
EnsureArgumentValueCount(values);
163-
arguments.TargetPath = value;
164-
Console.WriteLine($"TargetPath: {arguments.TargetPath}");
163+
arguments.TargetPath = value.TrimEnd('"');
165164
if (!Directory.Exists(value))
166165
{
167166
this.console.WriteLine($"The working directory '{value}' does not exist.");

0 commit comments

Comments
 (0)