view deploy/win/zip.ps1 @ 393:b081441c7970

Avoid deprecated warnings for very recent Qt changes
author Chris Cannam
date Tue, 09 Jun 2020 14:55:19 +0100
parents 0a45b9debc30
children
line wrap: on
line source

Set-StrictMode -Version 2.0
$ErrorActionPreference = "Stop"

Add-Type -assembly "system.io.compression.filesystem"

if ($args.length -ne 2) {
    echo "Usage: zip target.zip sourcedir"
    exit 2
}

$sourcename = $args[1]
$targetname = $args[0]

$source = (Resolve-Path $sourcename)

if ([System.IO.Path]::IsPathRooted($targetname)) {
   $target = $targetname
} else {
   $target = "$pwd\$targetname"
}

echo "Compressing from $source to $target..." | Out-Host
 
[io.compression.zipfile]::CreateFromDirectory($source, $target)