aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2019-01-02 23:11:24 +0100
committerPeter Wu <peter@lekensteyn.nl>2019-01-02 22:19:43 +0000
commit155f87f73c74d2b6a078a768f68372aeb1f548dd (patch)
tree8c015fe9560b1f3e9c7d7938c135a3cda30228f0 /tools
parentf45fd81616874afabdae4011f74380c809c39759 (diff)
tools: fix trailing messages.
Change-Id: If4f213daaa27f51b1659939244945d9fdddc7772 Reviewed-on: https://code.wireshark.org/review/31309 Reviewed-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/debian-setup.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/debian-setup.sh b/tools/debian-setup.sh
index 51b3bce8ab..10db57d1cf 100755
--- a/tools/debian-setup.sh
+++ b/tools/debian-setup.sh
@@ -176,12 +176,17 @@ apt-get update || exit 2
# shellcheck disable=SC2086
apt-get install $ACTUAL_LIST $OPTIONS || exit 2
-if [ ! $ADDITIONAL ]
+if [ $ADDITIONAL == 0 ]
then
- printf "\\n*** Optional packages not installed. Rerun with --install-optional to have them.\\n"
+ printf "\n*** Optional packages not installed. Rerun with --install-optional to have them.\n"
fi
-if [ ! $DEBDEPS ]
+if [ $DEBDEPS == 0 ]
then
printf "\n*** Debian packages build deps not installed. Rerun with --install-deb-deps to have them.\n"
fi
+
+if [ $TESTDEPS == 0 ]
+then
+ printf "\n*** Test deps not installed. Rerun with --install-test-deps to have them.\n"
+fi