mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 16:21:00 -05:00
build: fail on errors when installing chktex (#5214)
Refactor the chktex installation scripts because lists of commands don't fail if one of them exits with an error, even if set -e (errexit) is set. See the Bash reference manual, section 4.3.1 'The Set Builtin'.
This commit is contained in:
parent
5c67776f9d
commit
92e9cb3c85
1 changed files with 7 additions and 6 deletions
|
@ -11,11 +11,12 @@ apk add --no-cache --virtual .chktex-build-deps \
|
|||
libtool \
|
||||
make
|
||||
|
||||
git clone https://git.savannah.gnu.org/git/chktex.git &&
|
||||
cd chktex/chktex &&
|
||||
./autogen.sh --prefix=/usr/bin &&
|
||||
./configure &&
|
||||
make &&
|
||||
git clone https://git.savannah.gnu.org/git/chktex.git
|
||||
|
||||
cd chktex/chktex
|
||||
./autogen.sh --prefix=/usr/bin
|
||||
./configure
|
||||
make
|
||||
install chktex /usr/bin
|
||||
|
||||
rm -rfv /chktex
|
||||
|
|
Loading…
Reference in a new issue