Browse Source

Fix shellcheck warning SC2086 in run_calltool.sh

rl1987 5 years ago
parent
commit
eab81b12e9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/maint/run_calltool.sh

+ 1 - 1
scripts/maint/run_calltool.sh

@@ -15,7 +15,7 @@ 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