mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-03 12:12:05 +00:00
16a7cbca91
Spell checking can now run in automated mode. === Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ Author: Yaroslav Halchenko <debian@onerussian.com> Signed-off-by: David Sterba <dsterba@suse.com>
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/bin/sh
|
|
# Update all base images from Dockerfile
|
|
# Run before: images-build-all
|
|
|
|
for dir in ci-*; do
|
|
echo "Update $dir"
|
|
cd "$dir"
|
|
docker pull `awk '/^FROM/ {print $2}' < Dockerfile`
|
|
cd ..
|
|
done
|