Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Dec 4, 2024
1 parent 4ef6871 commit f1527bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GitVersion.App/ArgumentParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private void ParseTargetPath(Arguments arguments, string? name, IReadOnlyList<st
arguments.TargetPath = value;
if (!Directory.Exists(value))
{
this.console.WriteLine($"The working directory '{value}' does not exist.");
this.console.WriteLine($"The working directory '{value}' does not exist?.");
}

return;
Expand Down
2 changes: 1 addition & 1 deletion src/GitVersion.App/GitVersionExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private bool HandleNonMainCommand(GitVersionOptions gitVersionOptions, out int e

if (!Directory.Exists(workingDirectory))
{
this.log.Warning($"The working directory '{workingDirectory}' does not exist.");
this.log.Warning($"The working directory '{workingDirectory}' does not exist!.");
}
else
{
Expand Down

0 comments on commit f1527bd

Please sign in to comment.