Fix condition for additional_tags.
This commit is contained in:
parent
57b283703e
commit
36f0e3414f
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ build() {
|
|||
fi
|
||||
|
||||
final_tag="$repository:$tag"
|
||||
if [ -z "$additional_tags" ]; then
|
||||
if [ -n "$additional_tags" ]; then
|
||||
while read -r line; do
|
||||
if [ -z "$line" ]; then
|
||||
continue
|
||||
|
|
Reference in a new issue