summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael Pratt <mcpratt@pm.me>2023-11-24 05:10:12 -0500
committerChristian Marangi <ansuelsmth@gmail.com>2024-01-05 16:25:14 +0100
commitfd3376c5eeccc1f1753483ed31ffff03808ce31d (patch)
tree3dc4401809cb9259447076c978c68e3b1d0aaf4c /scripts
parente4a43cda0efba562d0ed1973b584c21309040ccc (diff)
downloadopenwrt-fd3376c5eeccc1f1753483ed31ffff03808ce31d.tar.gz
openwrt-fd3376c5eeccc1f1753483ed31ffff03808ce31d.tar.bz2
openwrt-fd3376c5eeccc1f1753483ed31ffff03808ce31d.zip
build: ensure silent Make behavior for json scripts
Run the invocation of Make with verbosity in order to prevent the printing of Makefile level and subtarget status. e.g. make[3] -C target/linux val.DEFAULT_PACKAGES val.ARCH_PACKAGES Remove piping of stderr, which is only useful when using the "communicate" method over the "run" method, and this script would not be written to handle a captured error anyway. For error testing, stdout and stderr can be set to a file object with the open() function like this: out = open('json_out', 'w') err = open('json_err', 'w') ... ... stdout=out, stderr=err, Signed-off-by: Michael Pratt <mcpratt@pm.me>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/json_overview_image_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/json_overview_image_info.py b/scripts/json_overview_image_info.py
index 89b7d4fe20..0d2cf7f1ef 100755
--- a/scripts/json_overview_image_info.py
+++ b/scripts/json_overview_image_info.py
@@ -55,9 +55,9 @@ if output:
"target/linux/",
"val.DEFAULT_PACKAGES",
"val.ARCH_PACKAGES",
+ "V=s",
],
stdout=PIPE,
- stderr=PIPE,
check=True,
env=environ.copy().update({"TOPDIR": Path().cwd()}),
universal_newlines=True,