Suppress tput errors (#69)

This commit is contained in:
Denis Isidoro 2019-09-25 08:04:06 -03:00 committed by GitHub
parent ea0fb00371
commit d974340939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,5 +46,5 @@ ui::select() {
}
ui::clear_previous_line() {
tput cuu1 && tput el || true
tput cuu1 2>/dev/null && tput el || true
}