We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f7a9fd commit 7fc628bCopy full SHA for 7fc628b
bin/scripts/archive-fonts.sh
@@ -88,7 +88,7 @@ while read -r filename; do
88
(cd "$path" && tar rf "$outputdir/$basename.tar" --no-recursion "$file")
89
done < <(find "${searchdir}" -type f -exec bash -c 'printf "%s\000" "{}" | sed "s!\(.*\)/!\1|!"' \; | sort -z -u '-t|' -k2,2 | sort -z)
90
91
- if [ $expected -ne 0 ]; then
+ if [ "$expected" -ne 0 ]; then
92
# Should never happen, but who knows
93
echo "${LINE_PREFIX} Did not pack expected number of font files! Likely same font names for different paths."
94
exit 1
0 commit comments