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

Fail on error installing package

Former-commit-id: 18bb8194fe
This commit is contained in:
David Boreham 2023-04-04 20:26:52 -06:00 committed by GitHub
commit 0c5f252465

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