From 3f3e73819a4a6ccacb26b449cea739837036e4a4 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 14 Sep 2020 02:15:55 +0300 Subject: [PATCH] fix build-image.ps1 script --- images.CI/macos/build-image.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images.CI/macos/build-image.ps1 b/images.CI/macos/build-image.ps1 index eae76eebe..1e462f9d4 100644 --- a/images.CI/macos/build-image.ps1 +++ b/images.CI/macos/build-image.ps1 @@ -19,7 +19,7 @@ param( [String] [Parameter (Mandatory=$true)] $XcodeInstallationPassword ) -$TemplatePath = (Get-ChildItem -Path "images" -Include "$Image.json" -Recurse -Depth 2).FullName +$TemplatePath = (Get-ChildItem -Path "templates" -Include "$Image.json" -Recurse -Depth 2).FullName if (-not $TemplatePath) { Write-Error "'-Image' parameter is not valid. You have to specify correct image type."