20 lines
460 B
Bash
Executable File
20 lines
460 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [[ ! -x scripts/bootstrap.sh ]]; then
|
|
echo "Expected executable scripts/bootstrap.sh" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! grep -q "./scripts/bootstrap.sh" README.md; then
|
|
echo "Expected README.md to document ./scripts/bootstrap.sh" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if grep -q "bin/setup first-admin" README.md; then
|
|
echo "README.md still references removed bin/setup first-admin command" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "bootstrap docs ok"
|