From d0520690a2c212182465f367dfdf46678bddbede Mon Sep 17 00:00:00 2001 From: Faryan Rezagholi Date: Sat, 14 Aug 2021 16:45:06 +0200 Subject: [PATCH] appveyor build script fixes --- Tools/zip_files.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/zip_files.ps1 b/Tools/zip_files.ps1 index baa73d78c..79bbef9ef 100644 --- a/Tools/zip_files.ps1 +++ b/Tools/zip_files.ps1 @@ -42,7 +42,7 @@ if ($ConfigurationName -match "Release") { # Fix for AppVeyor if(!([string]::IsNullOrEmpty($Env:APPVEYOR_BUILD_FOLDER))) { - $outputZipPath = ".\Release\$zipFilePrefix-$($version).zip" + $outputZipPath = "Release\$zipFilePrefix-$($version).zip" } Write-Output "Creating debug symbols ZIP file $($outputZipPath) from $($debugFile)" @@ -59,10 +59,10 @@ if ($ConfigurationName -eq "Release Portable") { # Fix for AppVeyor if(!([string]::IsNullOrEmpty($Env:APPVEYOR_BUILD_FOLDER))) { - $outputZipPath = ".\Release\mRemoteNG-Portable-$($version).zip" + $outputZipPath = "Release\mRemoteNG-Portable-$($version).zip" } - # Excluse debug symbols from folder + # Exclude debug symbols from folder $FileExclude = @("*.pdb") $Source = Get-ChildItem -Recurse -Path $TargetDir -Exclude $FileExclude