diff options
Diffstat (limited to 'tests/assert-deps.sh')
-rwxr-xr-x | tests/assert-deps.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/assert-deps.sh b/tests/assert-deps.sh index a189d13..0c0f02e 100755 --- a/tests/assert-deps.sh +++ b/tests/assert-deps.sh @@ -36,8 +36,9 @@ awk ' } ' Makefile | LANG=POSIX.UTF-8 sort > "$F" -printf '%s: all JavaScript sources are listed in the Makefile...' "$0" >&2 +printf '%s: all JavaScript sources are listed in the Makefile...' \ + "$(yellow "$0")" >&2 git ls-files src/*.js tests/js/*.js | LANG=POSIX.UTF-8 sort | diff -U10 "$F" - -printf ' OK.\n'>&2 +printf ' %s\n' "$(green 'OK')" >&2 |