[fix] Debian package: ensure failure is caught (#7804)

fakeroot was missing from the Docker image.
This commit is contained in:
Frans de Jonge
2021-06-05 08:59:47 +02:00
committed by GitHub
parent 0d161272fc
commit ae544b741d

View File

@@ -1,6 +1,6 @@
#!/bin/bash
# Script to generate debian packages for KOReader
# shellcheck disable=SC2164
set -e
if [ -z "${1}" ]; then
echo "${0}: can't find KOReader build, please specify a path"
@@ -120,5 +120,3 @@ else
echo "${COMMAND} not found, unable to build Debian package"
exit 1
fi
exit 0