summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-03-20 00:16:43 +0100
committerarchshift <gh@archshift.com>2015-03-20 00:16:43 +0100
commitb4b1070541782b7cd0f4f54a5e8e869ab325e042 (patch)
tree916729de3d0bdd68fd1b03c88f61bf4cc02a1054 /appveyor.yml
parentMerge pull request #665 from archshift/appveyor-sigh- (diff)
downloadyuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.tar
yuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.tar.gz
yuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.tar.bz2
yuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.tar.lz
yuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.tar.xz
yuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.tar.zst
yuzu-b4b1070541782b7cd0f4f54a5e8e869ab325e042.zip
Diffstat (limited to '')
-rw-r--r--appveyor.yml9
1 files 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" `