diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2019-02-12 20:02:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 20:02:40 +0800 |
commit | edf976ee8e7e1561cf11cbdc5a0c5edb497dda34 (patch) | |
tree | cd917da89c16e5271430983064b08f9a1cdd5657 /build | |
parent | f48da43bae183a04a23d298cb1790d2f8d2cec51 (diff) | |
download | go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.tar go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.tar.gz go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.tar.bz2 go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.tar.lz go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.tar.xz go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.tar.zst go-tangerine-edf976ee8e7e1561cf11cbdc5a0c5edb497dda34.zip |
.travis.yml: fix upload destination (#19043)
Diffstat (limited to 'build')
-rw-r--r-- | build/ci.go | 2 |
1 files changed, 1 insertions, 1 deletions
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() |