Bug fix: ./run_all_auto aborted on kojipkgs.fedoraproject.org on tput attempt. Thanks Robert Scheck.

This commit is contained in:
2017-08-08 09:52:39 +02:00
parent 2cab2102e0
commit d9c93a6dea
2 changed files with 28 additions and 6 deletions

View File

@ -43,12 +43,18 @@ EOF
#############################################
boldify() {
if which tput >/dev/null 2>&1; then tput smso; fi
if which tput >/dev/null 2>&1
then
tput smso || dummy_variable=1
fi
}
#############################################
unboldify() {
if which tput >/dev/null 2>&1; then tput rmso; fi
if which tput >/dev/null 2>&1
then
tput rmso || dummy_variable=1
fi
}
#############################################