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 ee9bbae commit 61fc49bCopy full SHA for 61fc49b
build_scripts/archive_package.ps1
@@ -26,6 +26,7 @@ $D3d12infoExecutableDestination = Join-Path -Path $FolderToArchive -ChildPath "D
26
Copy-Item -Path $D3d12infoExecutable -Destination $D3d12infoExecutableDestination
27
28
$ZipFile = Join-Path -Path $PackageFolder -ChildPath "D3d12infoGUI.zip"
29
-Compress-Archive -Path $FolderToArchive -DestinationPath $ZipFile
+# Disable compression to minimize chances of false positives in antivirus software
30
+Compress-Archive -CompressionLevel NoCompression -Path $FolderToArchive -DestinationPath $ZipFile
31
32
Pop-Location
0 commit comments