Skip to content

Commit

Permalink
Suppress error output unless --verbose is being used
Browse files Browse the repository at this point in the history
  • Loading branch information
debarshiray committed Sep 9, 2019
1 parent 50432df commit 4f8759f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolbox
Original file line number Diff line number Diff line change
Expand Up @@ -2034,8 +2034,8 @@ case $op in
fi
fi

$ls_images && [ "$images" != "" ] && echo "$images"
$ls_containers && [ "$containers" != "" ] && echo "$containers"
$ls_images && [ "$images" != "" ] 2>&3 && echo "$images"
$ls_containers && [ "$containers" != "" ] 2>&3 && echo "$containers"
exit
;;
rm | rmi )
Expand Down

0 comments on commit 4f8759f

Please sign in to comment.