verify / verify (push) Successful in 2m58s
Sanitized snapshot of private source 144ca0a9544042b0477ae732c1356cf0b9d62b3f. Add package selection, adoption workflow, and optional Sandwich Hime integration guidance. AI-Assistance: OpenAI Codex assisted documentation, verification, and publication. Signed-off-by: Cole Speelman <crspeelman@gmail.com>
19 lines
593 B
Bash
Executable File
19 lines
593 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
set -euo pipefail
|
|
root=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
|
|
cd "$root"
|
|
failed=0
|
|
while IFS= read -r -d '' file; do
|
|
case $file in
|
|
./.git|./.git/*|./LICENSES/*|./go.sum) continue ;;
|
|
./starters/*|./examples/*) expected=0BSD ;;
|
|
./scripts/*|./.gitea/*|./services/*) expected=AGPL-3.0-only ;;
|
|
*) expected=MPL-2.0 ;;
|
|
esac
|
|
if ! head -n 5 "$file" | grep -Fq "SPDX-License-Identifier: $expected"; then
|
|
echo "license mismatch: $file expected $expected" >&2; failed=1
|
|
fi
|
|
done < <(find . -type f -print0)
|
|
exit "$failed"
|