mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-09 15:40:19 +00:00
c7f05490bb
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
19 lines
568 B
Bash
Executable File
19 lines
568 B
Bash
Executable File
#! /usr/bin/env bash
|
|
#
|
|
# Copyright The Mbed TLS Contributors
|
|
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
#
|
|
# This swallows the output of the wrapped tool, unless there is an error.
|
|
# This helps reduce excess logging in the CI.
|
|
|
|
# If you are debugging a build / CI issue, you can get complete unsilenced logs
|
|
# by un-commenting the following line (or setting VERBOSE_LOGS in your environment):
|
|
# VERBOSE_LOGS=1
|
|
|
|
# don't silence invocations containing these arguments
|
|
export NO_SILENCE=" --version "
|
|
|
|
export TOOL="cmake"
|
|
|
|
exec "$(dirname "$0")/quiet" "$@"
|