fxa/.circleci/deploy-all.sh

11 строки
129 B
Bash
Executable File

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