django-template-graph: Fix shellcheck warnings.

In tools/django-template-graph line 10:
    for t in $(find -name '*.html' -printf '%P\n'); do
             ^-- SC2044: For loops over find output are fragile. Use find -exec or a while read loop.
               ^-- SC2185: Some finds don't have a default path. Specify '.' explicitly.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg 2018-08-03 00:14:49 +00:00 committed by Tim Abbott
parent c63d852b55
commit 7f35ad916e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ cd "$(dirname "$0")"/../templates
(
echo 'digraph {'
for t in $(find -name '*.html' -printf '%P\n'); do
find . -name '*.html' -printf '%P\n' | while read -r t; do
echo "\"$t\";" | sed 's|/|\\n|g'
perl -lne 'print "\"'"$t"'\" -> \"$1\";" if m/{%\s*extends\s*"([^"]+)"/' "$t" \
| sed 's|/|\\n|g'