diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 13:07:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-04-11 13:07:22 +0000 |
commit | f781391e89cda11c16f273868450e6c03b43006f (patch) | |
tree | 370bd467f7554119a7c81d885e40ec1f1a5f0829 | |
parent | Adding hook support to container log command for consistency. (diff) | |
download | compute-tools-f781391e89cda11c16f273868450e6c03b43006f.tar.xz compute-tools-f781391e89cda11c16f273868450e6c03b43006f.zip |
Cosmetically improving output of test target.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -26,18 +26,15 @@ SCRIPTS = bin/* libexec/*/* all: build test: - @echo -n "Checking for syntax errors" - + @echo -n "Checking for syntax errors with sh... " @for SCRIPT in $(SCRIPTS); \ do \ sh -n $${SCRIPT}; \ echo -n "."; \ done - @echo " done." - @echo -n "Checking for bashisms" - + @echo -n "Checking for bashisms... " @if [ -x /usr/bin/checkbashisms ]; \ then \ for SCRIPT in $(SCRIPTS); \ @@ -48,6 +45,7 @@ test: else \ echo "Note: devscripts not installed, skipping checkbashisms."; \ fi + @echo " done." @echo " done." |