We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7627aff commit a0418c7Copy full SHA for a0418c7
dtools/bin/check-tarball-h-files
@@ -10,11 +10,12 @@ fi
10
path=${tarball%%.tar.gz}
11
12
tar tzf $tarball \
13
- | grep -E '\.(h|py|v)$' \
+ | grep -E '\.(h|py|v|vh)$' \
14
| sed -e "s/$path/./" \
15
| sort >/tmp/tarball-h-files
16
17
-find . \( -name '*.h' -o -name '*.py' \) -print | grep -v ./$path | sort >/tmp/build-h-files
+find . \( -name '*.h' -o -name '*.py' -o -name '*.v' -o -name '*.vh' \) -print \
18
+ | grep -v ./$path | sort >/tmp/build-h-files
19
20
comm -23 /tmp/build-h-files /tmp/tarball-h-files
21
0 commit comments