Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/lib/logging.bash
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Example usage:
# `echo 'Terrible error' | error`

if ! command -v tput &>/dev/null
if ! tput sgr0 &>/dev/null
then
tput() { :; }
fi
Expand Down
2 changes: 1 addition & 1 deletion cli/run-tests.bash
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ then
echo "Total $(jq -r '.percent_covered' <"$coverage_dir/merged/kcov-merged/coverage.json")%"
fi

if ! command -v tput &>/dev/null; then
if ! tput sgr0 &>/dev/null; then
tput() { :; }
fi

Expand Down
Loading