We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a25ae2e commit 6e3e740Copy full SHA for 6e3e740
src/PostSharp.Engineering.BuildTools/Docker/GitComponent.cs
@@ -20,6 +20,8 @@ public override void WriteDockerfile( TextWriter writer )
20
$pathsToAdd = @('C:\git\cmd', 'C:\git\bin', 'C:\git\usr\bin'); `
21
$newPath = [Environment]::GetEnvironmentVariable('PATH', 'Machine') + ';' + ($pathsToAdd -join ';'); `
22
[Environment]::SetEnvironmentVariable('PATH', $newPath, 'Machine');
23
+
24
+ RUN "C:\Git\cmd\git.exe" config --system core.longpaths true
25
""" );
26
}
27
0 commit comments