Skip to content

Commit

Permalink
Fixes: Annoying error message fix - diff2html.sh : line 121 #2
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kujau <[email protected]>
  • Loading branch information
ckujau committed Feb 7, 2020
1 parent ae54827 commit c3ff9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diff2html.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ while [ $? -eq 0 ]; do
done
IFS=$OIFS

if [ $diffseen -eq 0 && $onlyseen -eq 0 ]; then
if [ $diffseen -eq 0 ] && [ $onlyseen -eq 0 ]; then
printf '</span>'
else
echo "</div>"
Expand Down

0 comments on commit c3ff9ff

Please sign in to comment.