zeek/ci/pre-build.sh
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

9 lines
196 B
Bash
Executable File

#/usr/bin/env bash
#
# If ZEEK_CI_PREBUILD_COMMAND is not empty, execute it via bash -c. That's it.
set -ex
if [ -n "$ZEEK_CI_PREBUILD_COMMAND" ]; then
bash -c "$ZEEK_CI_PREBUILD_COMMAND"
fi