We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e5f72 commit 3a80e83Copy full SHA for 3a80e83
src/windows/Installer.Windows/layout.ps1
@@ -53,6 +53,10 @@ Copy-Item -Path "$PAYLOAD/git-credential-manager.exe" `
53
Copy-Item -Path "$PAYLOAD/git-credential-manager.exe.config" `
54
-Destination "$PAYLOAD/git-credential-manager-core.exe.config"
55
56
+# Delete libraries that are not needed for Windows but find their way
57
+# into the publish output.
58
+Remove-Item -Path "$PAYLOAD/*.dylib" -Force
59
+
60
# Delete extraneous files that get included for other architectures
61
# We only care about x86 as the core GCM executable is only targeting x86
62
Remove-Item -Path "$PAYLOAD/arm/" -Recurse -Force
0 commit comments