Skip to content

Commit 61fc49b

Browse files
authored
Disabled archive comperssion for release package (#14)
1 parent ee9bbae commit 61fc49b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build_scripts/archive_package.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ $D3d12infoExecutableDestination = Join-Path -Path $FolderToArchive -ChildPath "D
2626
Copy-Item -Path $D3d12infoExecutable -Destination $D3d12infoExecutableDestination
2727

2828
$ZipFile = Join-Path -Path $PackageFolder -ChildPath "D3d12infoGUI.zip"
29-
Compress-Archive -Path $FolderToArchive -DestinationPath $ZipFile
29+
# Disable compression to minimize chances of false positives in antivirus software
30+
Compress-Archive -CompressionLevel NoCompression -Path $FolderToArchive -DestinationPath $ZipFile
3031

3132
Pop-Location

0 commit comments

Comments
 (0)