Files
libfprint/.gitlab-ci/scan-build
T
Marco Trevisan (Treviño) 58a40bb4a3 ci/scan-build: Exclude the full path of the build dir
The tool runs in the build dir as cwd, but let' make this clearer
2026-06-11 15:10:36 +02:00

8 lines
222 B
Bash
Executable File

#!/bin/sh -x
# This wrapper just disables the malloc checker
exec /usr/bin/scan-build --status-bugs -disable-checker unix.Malloc \
--exclude "$PWD/_build/meson-private" \
--exclude "$PWD/meson-private" \
"$@"