mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-20 13:21:28 +00:00
syncpackage: Don't upload orig tarball if not needed.
This commit is contained in:
parent
fa0942f136
commit
6828ae2e8c
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -11,8 +11,9 @@ ubuntu-dev-tools (0.102) UNRELEASED; urgency=low
|
|||||||
* suspicious-source: whitelist font source formats. Thanks to Nicolas
|
* suspicious-source: whitelist font source formats. Thanks to Nicolas
|
||||||
Spalinger for the patch (LP: #365147).
|
Spalinger for the patch (LP: #365147).
|
||||||
* Update the man page of suspicious-source to match the rewrite.
|
* Update the man page of suspicious-source to match the rewrite.
|
||||||
|
* syncpackage: Don't upload orig tarball if not needed.
|
||||||
|
|
||||||
-- Benjamin Drung <bdrung@ubuntu.com> Thu, 12 Aug 2010 01:11:45 +0200
|
-- Benjamin Drung <bdrung@ubuntu.com> Sat, 14 Aug 2010 18:19:53 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.101) unstable; urgency=low
|
ubuntu-dev-tools (0.101) unstable; urgency=low
|
||||||
|
|
||||||
|
@ -278,7 +278,9 @@ def sync_dsc(script_name, dscurl, debian_dist, release, name, email, bugs, keyid
|
|||||||
"-DOrigin=debian/" + debian_dist,
|
"-DOrigin=debian/" + debian_dist,
|
||||||
"-e" + uploader]
|
"-e" + uploader]
|
||||||
if need_orig:
|
if need_orig:
|
||||||
cmd += ['-sa']
|
cmd.append("-sa")
|
||||||
|
else:
|
||||||
|
cmd.append("-sd")
|
||||||
if not verbose:
|
if not verbose:
|
||||||
cmd += ["-q"]
|
cmd += ["-q"]
|
||||||
if verbose:
|
if verbose:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user