yunohost-ci/rebuild_all.sh
2020-05-18 17:41:00 +02:00

12 lines
No EOL
340 B
Bash
Executable file

#!/usr/bin/env bash
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source $current_dir/utils.sh # Get utils functions.
for debian_version in "stretch" "buster"
do
for ynh_version in "stable" "testing" "unstable"
do
rebuild_base_containers $debian_version $ynh_version "amd64"
done
done