Files
minideb/buildall
T
James Westby 4881871bd0 Split out a buildone script
This makes it easier to test all the code around the building
of an image as you can just build one image.
2019-09-27 13:27:54 +02:00

18 lines
185 B
Bash
Executable File

#!/bin/bash
# Build a minideb image for each supported dist
set -e
set -u
set -o pipefail
DISTS="jessie
stretch
buster
unstable
"
for DIST in $DISTS; do
./buildone "$DIST"
done