mirror of
https://github.com/kdave/btrfs-progs
synced 2025-02-17 10:16:53 +00:00
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
|