8000
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 4898749 commit ce13ac8Copy full SHA for ce13ac8
.gitignore
@@ -98,3 +98,9 @@ logfile/*
98
99
# Ignore nuget.config because it is dynamically generated
100
nuget.config
101
+
102
+# Ignore MSBuild Binary Logs
103
+msbuild.binlog
104
105
+# Ignore gzip files in the manpage folder
106
+assets/manpage/*.gz
tools/packaging/packaging.psm1
@@ -1609,7 +1609,7 @@ function New-ManGzip
1609
# gzip in assets directory
1610
$GzipFile = "$RoffFile.gz"
1611
Write-Log "Creating man gz - running gzip..."
1612
- Start-NativeExecution { gzip -f $RoffFile } -VerboseOutputOnError
+ Start-NativeExecution { gzip -kf $RoffFile } -VerboseOutputOnError
1613
1614
$ManFile = Join-Path "/usr/local/share/man/man1" (Split-Path -Leaf $GzipFile)
1615
0 commit comments