mirror of
https://github.com/pi-hole/pi-hole.git
synced 2025-04-22 07:10:19 +00:00
Remove WEB_CALL from COL_TABLE
Signed-off-by: Christian König <github@yubiuser.dev>
This commit is contained in:
parent
9050e47049
commit
f3dc202e36
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
# Determine if terminal is capable of showing colors
|
# Determine if terminal is capable of showing colors
|
||||||
if ([ -t 1 ] && [ $(tput colors) -ge 8 ]) || [ "${WEBCALL}" ]; then
|
if [ -t 1 ] && [ "$(tput colors)" -ge 8 ]; then
|
||||||
# Bold and underline may not show up on all clients
|
# Bold and underline may not show up on all clients
|
||||||
# If something MUST be emphasized, use both
|
# If something MUST be emphasized, use both
|
||||||
COL_BOLD='[1m'
|
COL_BOLD='[1m'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue