Skip to content

Commit 84be4d8

Browse files
bordingarturcic
authored andcommitted
Add gitversion prefix to mutex name
1 parent 4d1da93 commit 84be4d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitVersion.App/GitVersionExecutor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public int Execute(GitVersionOptions gitVersionOptions)
5858
private int RunGitVersionTool(GitVersionOptions gitVersionOptions)
5959
{
6060
var mutexName = repositoryInfo.DotGitDirectory.Replace(Path.DirectorySeparatorChar.ToString(), "");
61-
using var mutex = new Mutex(true, $@"Global\{mutexName}", out var acquired);
61+
using var mutex = new Mutex(true, $@"Global\gitversion{mutexName}", out var acquired);
6262

6363
try
6464
{

0 commit comments

Comments
 (0)