summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2021-04-11 13:07:15 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2021-04-11 13:07:22 +0000
commitf781391e89cda11c16f273868450e6c03b43006f (patch)
tree370bd467f7554119a7c81d885e40ec1f1a5f0829 /Makefile
parentAdding hook support to container log command for consistency. (diff)
downloadcompute-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 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 40f9ec5..2eca00b 100644
--- a/Makefile
+++ b/Makefile
@@ -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."