mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-02-28 06:22:45 -08:00
26 lines
520 B
Bash
Executable File
26 lines
520 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
target="${1:-1500}"
|
|
file="${2:-src/main.ts}"
|
|
|
|
if [[ ! -f "$file" ]]; then
|
|
echo "[ERROR] File not found: $file" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! [[ "$target" =~ ^[0-9]+$ ]]; then
|
|
echo "[ERROR] Target line count must be an integer. Got: $target" >&2
|
|
exit 1
|
|
fi
|
|
|
|
actual="$(wc -l < "$file" | tr -d ' ')"
|
|
|
|
echo "[INFO] $file lines: $actual (target: <= $target)"
|
|
if (( actual > target )); then
|
|
echo "[ERROR] Line gate failed: $actual > $target" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "[OK] Line gate passed"
|