Skip to content
Snippets Groups Projects
Commit 5ffba0f4 authored by Jon Azpiazu's avatar Jon Azpiazu
Browse files

Fix shellcheck complains

parent 4c1a0784
No related branches found
No related tags found
No related merge requests found
...@@ -15,14 +15,14 @@ if ! docker inspect --type=image "$1" > /dev/null ; then ...@@ -15,14 +15,14 @@ if ! docker inspect --type=image "$1" > /dev/null ; then
fi fi
for label in "${!enforced_labels[@]}" ; do for label in "${!enforced_labels[@]}" ; do
if ! docker inspect -f "{{json .Config.Labels }}" "$image_name" | jq -e '.['\"$label\"']' > /dev/null ; then if ! docker inspect -f "{{json .Config.Labels }}" "$image_name" | jq -e '.['\""$label"\"']' > /dev/null ; then
echo "Key not found" echo "Key not found"
echo "$label = ${enforced_labels[$label]}" echo "$label = ${enforced_labels[$label]}"
label_args+=" --label $label=\"${enforced_labels[$label]}\"" label_args+=" --label $label=\"${enforced_labels[$label]}\""
fi fi
done done
if [ -v label_args ]; then if [ -n "${label_args+x}" ]; then
run_command="echo \"FROM $image_name\" | docker build $label_args -t $image_name -" run_command="echo \"FROM $image_name\" | docker build $label_args -t $image_name -"
eval "$run_command" eval "$run_command"
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment