diff options
author | archshift <gh@archshift.com> | 2015-03-20 00:19:07 +0100 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-03-20 00:19:07 +0100 |
commit | 4612d0be6ce235238403897972016c7da81b1f5b (patch) | |
tree | 916729de3d0bdd68fd1b03c88f61bf4cc02a1054 | |
parent | Merge pull request #665 from archshift/appveyor-sigh- (diff) | |
parent | Remove mysterious spaces that were added by `git show --format` (diff) | |
download | yuzu-4612d0be6ce235238403897972016c7da81b1f5b.tar yuzu-4612d0be6ce235238403897972016c7da81b1f5b.tar.gz yuzu-4612d0be6ce235238403897972016c7da81b1f5b.tar.bz2 yuzu-4612d0be6ce235238403897972016c7da81b1f5b.tar.lz yuzu-4612d0be6ce235238403897972016c7da81b1f5b.tar.xz yuzu-4612d0be6ce235238403897972016c7da81b1f5b.tar.zst yuzu-4612d0be6ce235238403897972016c7da81b1f5b.zip |
-rw-r--r-- | appveyor.yml | 9 |
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" ` |