blob: 97bd4d0ac28a2a5d5c11905098c0a6a221e3ead1 [file]
#!/usr/bin/env bash
set -eu -o pipefail
# -e: exits if a command fails
# -u: errors if an variable is referenced before being set
# -o pipefail: causes a pipeline to produce a failure return code if any command errors
readonly RULES_NODEJS_DIR=$(cd $(dirname "$0")/..; pwd)
source "${RULES_NODEJS_DIR}/scripts/packages.sh"
${RULES_NODEJS_DIR}/scripts/build_packages.sh ${PACKAGES[@]}