Dave Rodgman | 3e2c61d | 2024-01-04 16:20:20 +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 | # VERBOSE_LOGS=1 |
| 12 | |
| 13 | # don't silence invocations containing these arguments |
Dave Rodgman | 98a79cd | 2024-02-26 12:37:44 +0000 | [diff] [blame^] | 14 | export NO_SILENCE=" --version " |
Dave Rodgman | 3e2c61d | 2024-01-04 16:20:20 +0000 | [diff] [blame] | 15 | |
Dave Rodgman | 98a79cd | 2024-02-26 12:37:44 +0000 | [diff] [blame^] | 16 | export TOOL="cmake" |
Dave Rodgman | 3e2c61d | 2024-01-04 16:20:20 +0000 | [diff] [blame] | 17 | |
Dave Rodgman | 98a79cd | 2024-02-26 12:37:44 +0000 | [diff] [blame^] | 18 | exec $(dirname "$0")/quiet "$@" |