diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-02 13:11:26 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-02 13:11:26 -0400 |
commit | f27279f85766b71e106bc2d9c0624a7f95d7829a (patch) | |
tree | bd7770ba69f91123cfce555628ae29a63b213f53 /scripts | |
parent | d671e3f513cb62ca2e649d3c162d0874436eacf2 (diff) | |
parent | 5a3cb495ce5bf010440fc0288c1ca00fff6ec8e5 (diff) | |
download | tor-f27279f85766b71e106bc2d9c0624a7f95d7829a.tar.gz tor-f27279f85766b71e106bc2d9c0624a7f95d7829a.zip |
Merge remote-tracking branch 'tor-github/pr/449'
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/maint/run_calltool.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/maint/run_calltool.sh b/scripts/maint/run_calltool.sh index efb8706fea..b0268322f4 100755 --- 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. |