We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d1da93 commit 84be4d8Copy full SHA for 84be4d8
src/GitVersion.App/GitVersionExecutor.cs
@@ -58,7 +58,7 @@ public int Execute(GitVersionOptions gitVersionOptions)
58
private int RunGitVersionTool(GitVersionOptions gitVersionOptions)
59
{
60
var mutexName = repositoryInfo.DotGitDirectory.Replace(Path.DirectorySeparatorChar.ToString(), "");
61
- using var mutex = new Mutex(true, $@"Global\{mutexName}", out var acquired);
+ using var mutex = new Mutex(true, $@"Global\gitversion{mutexName}", out var acquired);
62
63
try
64
0 commit comments