mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-19 21:01:50 +00:00
b788f1dc58
Add convenience build scripts for updating all CI images. $ images-base-update $ images-build-all Signed-off-by: David Sterba <dsterba@suse.com>
10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Rebuild all docker images
|
|
for dir in ci-*; do
|
|
echo "Build $dir"
|
|
cd "$dir"
|
|
./docker-build
|
|
cd ..
|
|
done
|