diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2019-02-12 20:02:40 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-02-19 16:58:13 +0800 |
commit | 276f824707783ecbe092e521b5a7460515ee3e99 (patch) | |
tree | 04ac9356cfb3e0277cecee541f2709b5d3af6252 | |
parent | 048b463b301b1ac61be187d7195665d4ad31f51f (diff) | |
download | dexon-276f824707783ecbe092e521b5a7460515ee3e99.tar.gz dexon-276f824707783ecbe092e521b5a7460515ee3e99.tar.zst dexon-276f824707783ecbe092e521b5a7460515ee3e99.zip |
.travis.yml: fix upload destination (#19043)
(cherry picked from commit edf976ee8e7e1561cf11cbdc5a0c5edb497dda34)
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | build/ci.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index c34e3ea8a..9731ce181 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,7 +71,7 @@ matrix: - python-bzrlib - python-paramiko 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 - if: type = push diff --git a/build/ci.go b/build/ci.go index 14d97135b..6ca08d9ef 100644 --- a/build/ci.go +++ b/build/ci.go @@ -485,7 +485,7 @@ func maybeSkipArchive(env build.Environment) { func doDebianSource(cmdline []string) { var ( 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")`) workdir = flag.String("workdir", "", `Output directory for packages (uses temp dir if unset)`) now = time.Now() |