mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 12:33:40 +00:00
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:
committed by
Tim Abbott
parent
c63d852b55
commit
7f35ad916e
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user