7 lines
229 B
Bash
Executable File
7 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Clone NIST macos_security and Lynis into ./vendor (shallow). Requires git and network.
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
cd "$ROOT"
|
|
exec python3 -m applepy.bootstrap_compliance "$@"
|