summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2020-03-04 20:32:12 +1100
committerChris Johns <chrisj@rtems.org>2020-03-04 20:37:04 +1100
commit3b0032d9e05549e304595ba3fd9ace81219a5f0e (patch)
tree7f490d2b0412e7272adf2db6e4c5cf2c685af430
parent9e49d20a308f3f7b41b522d147ca08b0f76e6b93 (diff)
sb/options: Let --source-only-download download releases
- The release procedure uses the sb-set-sources command now. Closes #3896
-rwxr-xr-xsource-builder/sb/log.py2
-rw-r--r--source-builder/sb/options.py3
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