Browse Source

new: [compose-core] avoid displaying information about optional relations available in quiet mode

cache-relation
Valentin Lab 1 year ago
parent
commit
62baa4f655
  1. 2
      bin/compose-core

2
bin/compose-core

@ -2676,10 +2676,12 @@ get_all_relations () {
## make recommendation ## make recommendation
echo "$(_display_solves recommended)" | sed -r "s/^/${YELLOW}||${NORMAL} /g" >&2 echo "$(_display_solves recommended)" | sed -r "s/^/${YELLOW}||${NORMAL} /g" >&2
fi fi
if [ -z "$QUIET" ]; then
if [ "${#optional[@]}" != 0 ]; then if [ "${#optional[@]}" != 0 ]; then
## inform about options ## inform about options
echo "$(_display_solves optional)" | sed -r "s/^/${BLUE}||${NORMAL} /g" >&2 echo "$(_display_solves optional)" | sed -r "s/^/${BLUE}||${NORMAL} /g" >&2
fi fi
fi
# if [ "${#required[@]}" != 0 ]; then # if [ "${#required[@]}" != 0 ]; then
# err "Required relations not satisfied" # err "Required relations not satisfied"
# return 1 # return 1

Loading…
Cancel
Save