citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit eb6b3bfe11d371f77779159c9da4a29657dbaad3
parent 0b0f5245bd7841fcbe6934fe0860f493461611e2
Author: kyle <kyle@0x30.net>
Date:   Mon, 28 Nov 2016 00:49:51 -0700

src/check: remove err, tighen

Diffstat:
Msrc/check.sh | 12+++---------
1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/src/check.sh b/src/check.sh @@ -15,13 +15,7 @@ # # Counts events in citrun.log files. # -set -e -set -u - -err() { - 1>&2 echo $@ - exit 1 -} +set -eu print_tty() { if [ -t 1 ]; then @@ -52,7 +46,7 @@ done dirs=$@ if [ -z $dirs ]; then - err "Usage: citrun-check path" + dirs="." fi GREP[0]="Found source file" @@ -121,8 +115,8 @@ print_tty echo Summary: -printf "%10i %s\n" $log_files "citrun.log files processed" if [ $log_files -eq 0 ]; then + printf "%10i %s\n" $log_files "citrun.log files processed" exit 0 fi