We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cfe4de commit 086b0dfCopy full SHA for 086b0df
1 file changed
lib/shared.bash
@@ -171,7 +171,7 @@ function build_image_override_file_with_version() {
171
if (( $# > 0 )); then
172
cache_from_amt=$1
173
shift
174
- while (( cache_from_amt-- > 0 )) ; do
+ while (( cache_from_amt-- > 0 )); do
175
cache_from+=( "$1" ); shift
176
done
177
fi
@@ -181,7 +181,7 @@ function build_image_override_file_with_version() {
181
182
labels_amt=$1
183
184
- while (( labels_amt-- > 0 )) ; do
+ while (( labels_amt-- > 0 )); do
185
labels+=( "$1" ); shift
186
187
0 commit comments