From b4b1070541782b7cd0f4f54a5e8e869ab325e042 Mon Sep 17 00:00:00 2001
From: archshift <gh@archshift.com>
Date: Thu, 19 Mar 2015 16:16:43 -0700
Subject: [PATCH] Remove mysterious spaces that were added by `git show
 --format`

No idea why these spaces are only added on recent revisions of Citra
(older revisions did not have this problem).

Let's just remove the spaces then in Powershell.
---
 appveyor.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml
index c5005bd6d..7886b905b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -41,15 +41,16 @@ after_build:
           {
             $GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
             $GITREV = $(git show -s --format='%h')
-            $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace "`n|`r",""
-            # zip up the build folder
+            # Where are these spaces coming from? Regardless, let's remove them
+            $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ",""
+            # Zip up the build folder
             7z a $BUILD_NAME .\build\bin\release\*
             
-            # download winscp
+            # Download winscp
             Invoke-WebRequest "http://hivelocity.dl.sourceforge.net/project/winscp/WinSCP/5.7/winscp570.zip" -OutFile "winscp570.zip"
             7z e -y winscp570.zip
             
-            # upload to server
+            # Upload to server
             .\WinSCP.com /command `
                 "option batch abort" `
                 "option confirm off" `