Minos Galanakis | 2c824b4 | 2025-03-20 09:28:45 +0000 | [diff] [blame^] | 1 | #! /usr/bin/env bash |
| 2 | # |
| 3 | # Copyright The Mbed TLS Contributors |
| 4 | # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
| 5 | # |
| 6 | # This swallows the output of the wrapped tool, unless there is an error. |
| 7 | # This helps reduce excess logging in the CI. |
| 8 | |
| 9 | # If you are debugging a build / CI issue, you can get complete unsilenced logs |
| 10 | # by un-commenting the following line (or setting VERBOSE_LOGS in your environment): |
| 11 | |
| 12 | # export VERBOSE_LOGS=1 |
| 13 | |
| 14 | # don't silence invocations containing these arguments |
| 15 | NO_SILENCE=" --version " |
| 16 | |
| 17 | TOOL="cmake" |
| 18 | |
| 19 | . "$(dirname "$0")/quiet.sh" |