mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
15 lines
363 B
Bash
15 lines
363 B
Bash
|
#!/usr/bin/env bash
|
|||
|
#
|
|||
|
# Copyright 2024 GNOME Foundation, Inc.
|
|||
|
#
|
|||
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|||
|
#
|
|||
|
# Original author: Philip Withnall
|
|||
|
|
|||
|
set -eu
|
|||
|
|
|||
|
# This script just exists so that we can set the scan-build flags in
|
|||
|
# .gitlab-ci.yml and pass them into Meson’s `scan-build` target.
|
|||
|
|
|||
|
# shellcheck disable=SC2086
|
|||
|
exec scan-build ${SCAN_BUILD_FLAGS:-} "$@"
|