summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar archshift2015-03-17 19:30:09 -0700
committerGravatar archshift2015-03-17 19:30:09 -0700
commitdf71ed194d041e01878636cf7939a29b6e14f56b (patch)
tree8934021319af22cb622568bcc58ff1acacb65dc5
parentMerge pull request #635 from archshift/builds (diff)
parentStrip newlines on the build name before trying to upload. (diff)
downloadyuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.gz
yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.xz
yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.zip
Merge pull request #665 from archshift/appveyor-sigh-
AppVeyor: Strip newlines on the build name before trying to upload.
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index ae22101eb..c5005bd6d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -40,8 +40,8 @@ after_build:
40 if (!"$env:APPVEYOR_PULL_REQUEST_TITLE" -and ("$env:APPVEYOR_REPO_BRANCH" -eq "master")) 40 if (!"$env:APPVEYOR_PULL_REQUEST_TITLE" -and ("$env:APPVEYOR_REPO_BRANCH" -eq "master"))
41 { 41 {
42 $GITDATE = $(git show -s --date=short --format='%ad') -replace "-","" 42 $GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
43 $GITREV = git show -s --format='%h' 43 $GITREV = $(git show -s --format='%h')
44 $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" 44 $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace "`n|`r",""
45 # zip up the build folder 45 # zip up the build folder
46 7z a $BUILD_NAME .\build\bin\release\* 46 7z a $BUILD_NAME .\build\bin\release\*
47 47