From 3608905ea6ffda13c2cf8a7425cf2d351cf9f0d3 Mon Sep 17 00:00:00 2001 From: Ian Leonard Date: Sun, 2 Oct 2022 01:47:38 +0000 Subject: [PATCH] scripts/autoreconf: shellcheck changes Signed-off-by: Ian Leonard --- scripts/autoreconf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/autoreconf b/scripts/autoreconf index 2fad4e9ecf..31033723fb 100755 --- a/scripts/autoreconf +++ b/scripts/autoreconf @@ -8,8 +8,7 @@ RECONF_DIR="${3}" -if [ ! -f "${RECONF_DIR}/configure.in" \ - -a ! -f "${RECONF_DIR}/configure.ac" ]; then +if [ ! -f "${RECONF_DIR}/configure.in" ] && [ ! -f "${RECONF_DIR}/configure.ac" ]; then die "configure.in or configure.ac not found" fi