mirror of
https://github.com/kdave/btrfs-progs
synced 2024-12-19 21:01:50 +00:00
466e025c74
There's a typo in the way how parameter is passed and is a syntax error for docker. Signed-off-by: David Sterba <dsterba@suse.com>
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Update all base images from Dockefile
|
|
for dir in ci-*; do
|
|
echo "Update $dir"
|
|
cd "$dir"
|
|
docker pull `awk '/^FROM/ {print $2}' < Dockerfile`
|
|
cd ..
|
|
done
|