.travis.yml: fix upload destination (#19043)
This commit is contained in:
		@@ -71,7 +71,7 @@ matrix:
 | 
				
			|||||||
            - python-bzrlib
 | 
					            - python-bzrlib
 | 
				
			||||||
            - python-paramiko
 | 
					            - python-paramiko
 | 
				
			||||||
      script:
 | 
					      script:
 | 
				
			||||||
        - go run build/ci.go debsrc -upload ppa:ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <geth-ci@ethereum.org>"
 | 
					        - go run build/ci.go debsrc -upload ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <geth-ci@ethereum.org>"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # This builder does the Linux Azure uploads
 | 
					    # This builder does the Linux Azure uploads
 | 
				
			||||||
    - if: type = push
 | 
					    - if: type = push
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -485,7 +485,7 @@ func maybeSkipArchive(env build.Environment) {
 | 
				
			|||||||
func doDebianSource(cmdline []string) {
 | 
					func doDebianSource(cmdline []string) {
 | 
				
			||||||
	var (
 | 
						var (
 | 
				
			||||||
		signer  = flag.String("signer", "", `Signing key name, also used as package author`)
 | 
							signer  = flag.String("signer", "", `Signing key name, also used as package author`)
 | 
				
			||||||
		upload  = flag.String("upload", "", `Where to upload the source package (usually "ppa:ethereum/ethereum")`)
 | 
							upload  = flag.String("upload", "", `Where to upload the source package (usually "ethereum/ethereum")`)
 | 
				
			||||||
		sshUser = flag.String("sftp-user", "", `Username for SFTP upload (usually "geth-ci")`)
 | 
							sshUser = flag.String("sftp-user", "", `Username for SFTP upload (usually "geth-ci")`)
 | 
				
			||||||
		workdir = flag.String("workdir", "", `Output directory for packages (uses temp dir if unset)`)
 | 
							workdir = flag.String("workdir", "", `Output directory for packages (uses temp dir if unset)`)
 | 
				
			||||||
		now     = time.Now()
 | 
							now     = time.Now()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user