yunohost-ci/rebuild_all.sh
2020-03-26 17:50:12 +01:00

12 lines
No EOL
360 B
Bash
Executable file

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
local base_image="yunohost-$debian_version-$ynh_version"
rebuild_base_containers $BASE_IMAGE
done
done