Compare commits

..

No commits in common. "5c42b8ad5f367e2988b9889171e9ec4f11f446e0" and "23110269a63081cafddaff0f6fde7951e4e8a17c" have entirely different histories.

View file

@ -123,7 +123,7 @@ get_docker_configuration_file_args() {
get_docker_configuration_file get_docker_configuration_file
if "$HAVE_JQ"; then if "$HAVE_JQ"; then
jq --monochrome-output --raw-output "if has(\"${OPTION}\") then .[\"${OPTION}\"] else \"\" end" "$CONFIG_FILE" jq --monochrome-output --raw-output ".[\"${OPTION}\"]" "$CONFIG_FILE"
else else
cat "$CONFIG_FILE" | tr , '\n' | grep "$OPTION" | sed 's/.*://g' | tr -d '" ', cat "$CONFIG_FILE" | tr , '\n' | grep "$OPTION" | sed 's/.*://g' | tr -d '" ',
fi fi