We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9430c12 commit cc9572bCopy full SHA for cc9572b
1 file changed
modeline2edid
@@ -121,9 +121,13 @@ if [[ -z "$f" || "$f" == "-h" ]]; then
121
fi
122
123
echo "Searching for modelines in '$f'"
124
+retcode=0
125
while read; do
126
# trim
127
REPLY=($=REPLY)
128
[[ -n "$REPLY" ]] || continue
- template-S ${(@)REPLY} || :
129
+ if ! template-S ${(@)REPLY} ; then
130
+ retcode=1
131
+ fi
132
done < $f
133
+exit $retcode
0 commit comments