1
0
Fork 0
mirror of https://github.com/Luzifer/arch-update.git synced 2024-10-18 06:44:23 +00:00

Strip inline-colors for log lines

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-03-10 10:58:12 +01:00
parent 6bdd4006b7
commit 763a2d1cc0
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ source=(
arch-update.service
arch-update.timer
)
sha512sums=('609794ba2c80e70f7b32fc5323e0897d643a836af2899916c72d5727a0afd8b41341d8ab7d4b9fa7a06c10a9803a34a9bb380c92f15276e2dc459652b6b464d3'
sha512sums=('a9af1a85dc0adde7cffdb3544ca6b4e18ce129683f5bfdcdfda9c954d759f909c05e1716b9beda50f4f15104047cdae18f25897090baf7118c35f7d0b5c82cfd'
'384a9fc9c7f43bd7e9ec9274b5e930e7e9e3dcea088f524201f0b359f33e470b9b120b6c261b82b2d484d7af937eb67ba2cdf7a0bda2ca424338da03e008a716'
'f9b62fbc31d963525340c408ddacf671c54d9874b4decd1c84286b2a000ef488a85d738f7a3d83db34e9dd98baa84389aff837bdf68531712ba9eaa7a8d762bd')

View file

@ -55,7 +55,7 @@ function log() { # ( message, color )
local color="${2:-${COLOR_PLAIN}}"
s="[$(date)] $1"
echo -e "${color}${s}${COLOR_PLAIN}" >&2
LOGLINES+=("$s")
LOGLINES+=("$(echo "$s" | sed -E "s/\\\033\[[^m]*m//g")")
}
function main() { # ( )