mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
6 lines
109 B
Bash
Executable file
6 lines
109 B
Bash
Executable file
#!/bin/sh
|
|
if grep -q "DISABLE_SPICY:BOOL=true" "${BUILD}"/CMakeCache.txt; then
|
|
return 1
|
|
else
|
|
true
|
|
fi
|