Merge pull request #285 from cerc-io/dboreham/fix-gerbil-builder

Fail on error installing package
This commit is contained in:
David Boreham 2023-04-04 20:26:52 -06:00 committed by GitHub
commit 18bb8194fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,6 @@ DEPS=(github.com/fare/gerbil-utils
) ;
for i in ${DEPS[@]} ; do
echo "Installing gerbil package: $i"
gxpkg install $i &&
gxpkg install $i
gxpkg build $i
done