From a379f83e4f8520a48c6b0996c0d90197ea878277 Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Mon, 30 Jan 2023 15:54:00 -0600 Subject: [PATCH] Bump YamlCreate to use manifest v1.4 (#87349) --- Tools/YamlCreate.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index ac9f42c2ad1d5..1d2695e59f205 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -163,8 +163,8 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.2.1' -$ManifestVersion = '1.2.0' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.2.2' +$ManifestVersion = '1.4.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False $ofs = ', ' @@ -679,7 +679,7 @@ Function Get-PathInstallerType { return 'msi' } if ($Path -match '\.appx(bundle){0,1}$') { return 'appx' } - # if ($Path -match '\.zip$') { return 'zip' } + if ($Path -match '\.zip$') { return 'zip' } return $null }