Merge pull request #1285 from dcooper16/fix_color_comparison_typo

Fix typo in check of $COLOR
This commit is contained in:
Dirk Wetter 2019-06-25 09:08:28 +02:00 committed by GitHub
commit 3d5982e60b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2716,7 +2716,7 @@ emphasize_stuff_in_headers(){
-e "s/system-wsgw-management-loopback/${yellow}system-wsgw-management-loopback${off}/g"
if "$do_html"; then
if [[ $COLOR -eq 2 ]]; then
if [[ $COLOR -ge 2 ]]; then
html_out "$(tm_out "$1" | sed -e 's/\&/\&/g' \
-e 's/</\&lt;/g' -e 's/>/\&gt;/g' -e 's/"/\&quot;/g' -e "s/'/\&apos;/g" \
-e "s/\([0-9]\)/${html_brown}\1${html_off}/g" \