10 lines
290 B
Bash
Executable File
10 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
# This program is free software, licensed under the terms of the GNU GPL.
|
|
# See the Bongo COPYING file for full details.
|
|
# Copyright (c) 2026 Bongo Project contributors
|
|
|
|
set -eu
|
|
BONGO_SANITIZER=asan
|
|
export BONGO_SANITIZER
|
|
exec "$(dirname "$0")/sanitizer-protocol-session.sh" "$@"
|