diff options
author | maximilian attems <maks@debian.org> | 2010-06-19 18:08:15 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2010-06-22 11:25:07 +0200 |
commit | 837f2614f79e8ea66385e6dcb2a6072ddb5ec186 (patch) | |
tree | ff631ac32b176b9a1a337cf078d71e594954c9a9 /hook-functions | |
parent | 2390db89c9bcf1f83405098ba9221ae7476187cb (diff) | |
download | initramfs-tools-837f2614f79e8ea66385e6dcb2a6072ddb5ec186.tar.gz initramfs-tools-837f2614f79e8ea66385e6dcb2a6072ddb5ec186.zip |
mkinitramfs: set nounset and errexit
Better catch both early than stupid mistakes cropping in.
Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'hook-functions')
-rw-r--r-- | hook-functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hook-functions b/hook-functions index d860bc7..9d63d58 100644 --- a/hook-functions +++ b/hook-functions @@ -532,7 +532,7 @@ check_minkver() # sed: keep last line starting with MINKVER=, # remove MINKVER= and trailing space minver=$(sed '/^MINKVER=/!d;$!d;s/^MINKVER=//;s/[[:space:]]*$//' "${initdir}/${cm_x}") - if [ -z "${tmp}" ]; then + if [ -z "${tmp:-}" ]; then continue elif dpkg --compare-versions "${curversion}" lt "${minver}"; then echo "W: ${cm_x} hook script requires at least kernel version ${minver}" >&2 |