11 lines
158 B
Bash
Executable File
11 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$(uname -s)" != "Linux" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
if grep -q "DISABLE_AF_PACKET:BOOL=true" "${BUILD}"/CMakeCache.txt; then
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|