From 3b0032d9e05549e304595ba3fd9ace81219a5f0e Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 4 Mar 2020 20:32:12 +1100 Subject: sb/options: Let --source-only-download download releases - The release procedure uses the sb-set-sources command now. Closes #3896 --- source-builder/sb/log.py | 2 +- source-builder/sb/options.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/source-builder/sb/log.py b/source-builder/sb/log.py index 7c0f8e8..788160e 100755 --- a/source-builder/sb/log.py +++ b/source-builder/sb/log.py @@ -92,7 +92,7 @@ def notice(text = os.linesep, log = None): _output(text, log) def trace(text = os.linesep, log = None): - if tracing: + if not quiet and tracing: _output(text, log) def warning(text = os.linesep, log = None): diff --git a/source-builder/sb/options.py b/source-builder/sb/options.py index 3e53a11..f0f5ea4 100644 --- a/source-builder/sb/options.py +++ b/source-builder/sb/options.py @@ -293,8 +293,7 @@ class command_line: '--with-download', '--quiet', '--without-log', - '--without-error-report', - '--without-release-url'] + '--without-error-report'] if a == '--dry-run': self.args += ['--without-error-report'] arg += 1 -- cgit v1.2.3