btrfs-progs: ci: fix image updater script

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>
This commit is contained in:
David Sterba 2022-09-15 22:45:04 +02:00
parent 8d8f8c7f73
commit 466e025c74
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@
for dir in ci-*; do
echo "Update $dir"
cd "$dir"
docker pull `awk '/^FROM/ {print $$2}' < Dockerfile`
docker pull `awk '/^FROM/ {print $2}' < Dockerfile`
cd ..
done