diff options
author | archshift <gh@archshift.com> | 2015-03-18 03:30:09 +0100 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-03-18 03:30:09 +0100 |
commit | df71ed194d041e01878636cf7939a29b6e14f56b (patch) | |
tree | 8934021319af22cb622568bcc58ff1acacb65dc5 | |
parent | Merge pull request #635 from archshift/builds (diff) | |
parent | Strip newlines on the build name before trying to upload. (diff) | |
download | yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.gz yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.bz2 yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.lz yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.xz yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.tar.zst yuzu-df71ed194d041e01878636cf7939a29b6e14f56b.zip |
-rw-r--r-- | appveyor.yml | 4 |
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: if (!"$env:APPVEYOR_PULL_REQUEST_TITLE" -and ("$env:APPVEYOR_REPO_BRANCH" -eq "master")) { $GITDATE = $(git show -s --date=short --format='%ad') -replace "-","" - $GITREV = git show -s --format='%h' - $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" + $GITREV = $(git show -s --format='%h') + $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace "`n|`r","" # zip up the build folder 7z a $BUILD_NAME .\build\bin\release\* |