Merge pull request #665 from archshift/appveyor-sigh-
AppVeyor: Strip newlines on the build name before trying to upload.
This commit is contained in:
		
						commit
						df71ed194d
					
				@ -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\*
 | 
			
		||||
            
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user