From 0d31c1b1cbc0ada6346228a01ed0ffa72af20300 Mon Sep 17 00:00:00 2001 From: Stefan Scherer Date: Fri, 13 Sep 2019 18:19:44 +0200 Subject: [PATCH] Fix rebase tool --- deploy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.ps1 b/deploy.ps1 index 258bc14..7dbe90f 100644 --- a/deploy.ps1 +++ b/deploy.ps1 @@ -31,6 +31,7 @@ docker push "$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME" if ($isWindows) { # Windows Write-Host "Rebasing image to produce 2016/1607 variant" + npm install -g rebase-docker-image rebase-docker-image ` "$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME" ` -s mcr.microsoft.com/windows/nanoserver:1809 ` @@ -38,7 +39,6 @@ if ($isWindows) { -b mcr.microsoft.com/windows/nanoserver:sac2016 Write-Host "Rebasing image to produce 1709 variant" - npm install -g rebase-docker-image rebase-docker-image ` "$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME" ` -s mcr.microsoft.com/windows/nanoserver:1809 `