From 7900a985d4722b6b1b039698d5390da2c52f5f7d Mon Sep 17 00:00:00 2001 From: dbuechel Date: Thu, 7 Nov 2019 14:51:56 +0100 Subject: [PATCH] SEBWIN-344: Switched to move command to remove x64 setup from temporary directory on release build server. --- appveyor-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor-release.yml b/appveyor-release.yml index f4fa42fa..adaef541 100644 --- a/appveyor-release.yml +++ b/appveyor-release.yml @@ -37,7 +37,7 @@ for: before_build: - nuget restore - md "Setup\bin\x64\%CONFIGURATION%" - - copy "%TEMP%\Setup.msi" "Setup\bin\x64\%CONFIGURATION%\Setup.msi" + - move "%TEMP%\Setup.msi" "Setup\bin\x64\%CONFIGURATION%\Setup.msi" after_build: - appveyor PushArtifact "Setup\bin\%PLATFORM%\%CONFIGURATION%\Setup.msi" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_%PLATFORM%_Setup.msi" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup (%PLATFORM%)" - appveyor PushArtifact "SetupBundle\bin\%PLATFORM%\%CONFIGURATION%\SetupBundle.exe" -FileName "SEB_%APPVEYOR_BUILD_VERSION%_SetupBundle.exe" -DeploymentName "SEB %APPVEYOR_BUILD_VERSION% Setup Bundle"