Bug fix: ./run_all_auto aborted on kojipkgs.fedoraproject.org on tput attempt. Thanks Robert Scheck.
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
#############################################
|
||||
|
Reference in New Issue
Block a user