diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-11-29 15:00:14 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-11-29 15:06:21 +0100 |
commit | 16580c389a439338194b6bea4bc64d443e9ef5e9 (patch) | |
tree | eb2a15b2b3e53b06be0dc805d1f49b75b4552ea0 /bin/g-i-installation.sh | |
parent | 85fb5760aa022255fa9f227c5f02ee1d54401a47 (diff) | |
download | jenkins.debian.net-16580c389a439338194b6bea4bc64d443e9ef5e9.tar.xz |
a11y: fail when brltty or espeakup didn't automatically get installed
Diffstat (limited to 'bin/g-i-installation.sh')
-rw-r--r-- | bin/g-i-installation.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index a5e8af70..de808dcf 100644 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -1217,10 +1217,10 @@ save_logs() { # case $NAME in *_brltty) - grep brltty $RESULTS/dpkg-l || echo "Warning: package brltty not installed." + grep brltty $RESULTS/dpkg-l || { echo "Warning: package brltty not installed." ; export FAILURE=true ; } ;; *_speakup) - grep epeakup $RESULTS/dpkg-l || echo "Warning: package espeakup not installed." + grep epeakup $RESULTS/dpkg-l || { echo "Warning: package espeakup not installed." ; export FAILURE=true ; } ;; *) ;; |