summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/setbuilder.py
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2020-04-01 22:29:31 -0600
committerGedare Bloom <gedare@rtems.org>2020-04-04 22:11:00 -0600
commit4727c3e58f815252c01c77c9fa5055beccec4ec9 (patch)
tree31f3ac1668adf3e5e410ac2f12967fc8668b765d /source-builder/sb/setbuilder.py
parentdatabases/sqlite: Update to 3.31.1 (diff)
downloadrtems-source-builder-4727c3e58f815252c01c77c9fa5055beccec4ec9.tar.bz2
sb/reports: add sanitize parameter enabled for --mail
Adds a --sanitize option to command line for reports.py and also for the reports.report() interface from setbuilder.py to remove the Remotes information from git. Closes #3887.
Diffstat (limited to '')
-rw-r--r--source-builder/sb/setbuilder.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source-builder/sb/setbuilder.py b/source-builder/sb/setbuilder.py
index 7b80817..a6efd75 100644
--- a/source-builder/sb/setbuilder.py
+++ b/source-builder/sb/setbuilder.py
@@ -189,7 +189,7 @@ class buildset:
outname = path.host(path.join(outpath, name))
else:
outname = None
- r = reports.report(format, self.configs,
+ r = reports.report(format, False, self.configs,
copy.copy(opts), copy.copy(macros))
r.introduction(_build.config.file_name())
r.generate(_build.config.file_name())
@@ -199,7 +199,7 @@ class buildset:
r.write(outname)
del r
if mail:
- r = reports.report('text', self.configs,
+ r = reports.report('text', True, self.configs,
copy.copy(opts), copy.copy(macros))
r.introduction(_build.config.file_name())
r.generate(_build.config.file_name())