fxa/.circleci/deploy-all.sh

13 строки
153 B
Bash
Executable File

#!/bin/bash -e
DIR=$(dirname "$0")
cd "$DIR"
docker images
./deploy.sh "fxa-mono"
for d in ../packages/*/ ; do
./deploy.sh "$(basename "$d")"
done