We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76d27c0 commit e97abbfCopy full SHA for e97abbf
1 file changed
src/GitVersion.App/Arguments.cs
@@ -99,7 +99,8 @@ public GitVersionOptions ToOptions()
99
var workingDirectory = this.TargetPath?.TrimEnd('/', '\\');
100
if (workingDirectory != null)
101
{
102
- gitVersionOptions.WorkingDirectory = workingDirectory;
+ var absolutePath = Path.GetFullPath(workingDirectory);
103
+ gitVersionOptions.WorkingDirectory = absolutePath;
104
}
105
106
return gitVersionOptions;
0 commit comments