From 235a52a701e7c2a679b97b7ae51641eed155e183 Mon Sep 17 00:00:00 2001 From: Frank Skare Date: Fri, 11 Dec 2020 17:54:02 +0100 Subject: [PATCH] remove 7z from release --- Release.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Release.ps1 b/Release.ps1 index 0aaefa6..768b257 100644 --- a/Release.ps1 +++ b/Release.ps1 @@ -48,15 +48,11 @@ if ($versionInfo.FilePrivatePart -eq 0) $targetDir = $desktopDir + "\mpv.net-portable-x64-$($versionInfo.FileVersion)" Copy-Item .\mpv.net\bin\x64 $targetDir -Recurse -Exclude System.Management.Automation.xml - & $7z a -t7z -mx9 "$targetDir.7z" -r "$targetDir\*" - if ($LastExitCode) { throw $LastExitCode } & $7z a -tzip -mx9 "$targetDir.zip" -r "$targetDir\*" if ($LastExitCode) { throw $LastExitCode } $targetDir = $desktopDir + "\mpv.net-portable-x86-$($versionInfo.FileVersion)" Copy-Item .\mpv.net\bin\x86 $targetDir -Recurse -Exclude System.Management.Automation.xml - & $7z a -t7z -mx9 "$targetDir.7z" -r "$targetDir\*" - if ($LastExitCode) { throw $LastExitCode } & $7z a -tzip -mx9 "$targetDir.zip" -r "$targetDir\*" if ($LastExitCode) { throw $LastExitCode }