Fix syntax of out command.
This commit is contained in:
parent
76fcedd569
commit
2557eec3e9
1 changed files with 2 additions and 2 deletions
4
src/out
4
src/out
|
@ -17,8 +17,8 @@ if [ -n "$additional_tags" ]; then
|
|||
if ! [ -e "$additional_tags" ]; then
|
||||
fail "additional_tags specified, but doesn't exist"
|
||||
fi
|
||||
tr ' \n\t' '\n\n\n' | grep -v '^$' | while read -r tag; do
|
||||
crane tag "$REPOSITORY:@$(cat "$image_refs_file)" "$tag"
|
||||
tr '[:space:]' '\n' | grep -v '^$' | while read -r tag; do
|
||||
crane tag "$REPOSITORY:@$(cat "$image_refs_file")" "$tag"
|
||||
done
|
||||
fi
|
||||
|
||||
|
|
Reference in a new issue