bootstrap: Fix exit code when autoreconf fails (#962)

Fixes:

./bootstrap: line 37: exit: $: numeric argument required
This commit is contained in:
Ryan Schmidt 2022-05-11 11:21:00 -05:00 committed by GitHub
parent c9eb85691f
commit f09b2555ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,4 +32,4 @@ BROTLI_VERSION="$BROTLI_VERSION_MAJOR.$BROTLI_VERSION_MINOR.$BROTLI_VERSION_PATC
sed -i.bak "$SED_ERE" "s/[0-9]+:[0-9]+:[0-9]+/$BROTLI_ABI_INFO/" Makefile.am
sed -i.bak "$SED_ERE" "s/\[[0-9]+\.[0-9]+\.[0-9]+\]/[$BROTLI_VERSION]/" configure.ac
autoreconf --install --force --symlink || exit $
autoreconf --install --force --symlink || exit $?