зеркало из https://github.com/mozilla/fxa.git
16 строки
274 B
Bash
Executable File
16 строки
274 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
DIR=$(dirname "$0")
|
|
cd "$DIR"
|
|
|
|
if [[ -n "${CIRCLECI}" ]]; then
|
|
echo "Docker logs are located in the CircleCI build artifacts"
|
|
fi
|
|
|
|
../_scripts/build-builder.sh
|
|
../_scripts/build-fxa-node.sh
|
|
|
|
for d in ../packages/*/ ; do
|
|
./build.sh "$(basename "$d")"
|
|
done
|