commit f27279f85766b71e106bc2d9c0624a7f95d7829a parent d671e3f513cb62ca2e649d3c162d0874436eacf2 Author: Nick Mathewson <nickm@torproject.org> Date: Fri, 2 Nov 2018 13:11:26 -0400 Merge remote-tracking branch 'tor-github/pr/449' Diffstat:
| A | changes/ticket28011 | | | 3 | +++ |
| M | scripts/maint/run_calltool.sh | | | 4 | ++-- |
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/changes/ticket28011 b/changes/ticket28011 @@ -0,0 +1,3 @@ + o Code simplification and refactoring: + - Fix shellcheck warnings in run_calltool.sh. Resolves + ticket 28011. diff --git a/scripts/maint/run_calltool.sh b/scripts/maint/run_calltool.sh @@ -15,10 +15,10 @@ SUBITEMS="fn_graph fn_invgraph fn_scc fn_scc_weaklinks module_graph module_invgr for calculation in $SUBITEMS; do echo "======== $calculation" - python -m calltool $calculation > callgraph/$calculation + python -m calltool "$calculation" > callgraph/"$calculation" done -echo <<EOF > callgraph/README +cat <<EOF > callgraph/README This directory holds output from calltool, as run on Tor. For more information about each of these files, see the NOTES and README files in the calltool distribution.