mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
8 lines
196 B
Bash
Executable file
8 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
|