mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-09 15:19:11 +02:00
19 lines
398 B
Bash
19 lines
398 B
Bash
#!/bin/bash
|
|
# Copyright 2023 - 2024, project-repo and the cagebreak contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
RESULT=0
|
|
|
|
# shellcheck disable=2164
|
|
cd "${MESONCURRENTCONFIGDIR}"
|
|
|
|
# Check that no TODO statements remain in the release directory
|
|
if grep --exclude='test/illegal-strings' --exclude-dir='build' -Rn "TODO" ./**
|
|
then
|
|
echo "[x] TODO"
|
|
else
|
|
RESULT=1
|
|
echo "[ ] TODO"
|
|
fi
|
|
|
|
exit "${RESULT}"
|