7 lines
156 B
Bash
7 lines
156 B
Bash
|
#!/bin/bash
|
|||
|
|
|||
|
if [[ "$GENTOO_BOOTSTRAP_SCRIPT_ACTIVE" != true ]]; then
|
|||
|
echo "[1;31m * ERROR:[m This script must not be executed directly!" >&2
|
|||
|
exit 1
|
|||
|
fi
|