Files
DeepSeek-TUI/scripts/release/check-npm-binary-version.test.sh
CodeWhale Bot 959dbe4382 fix(release): promote tested v0.9.11 nonbenchmark candidate
Promotes the fully gated non-benchmark candidate while preserving the benchmark tree exactly from the prior release-PR head.

Signed-off-by: CodeWhale Bot <bot@codewhale.net>
2026-08-22 04:16:55 -07:00

18 lines
454 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
check="${repo_root}/scripts/release/check-npm-binary-version.sh"
"${check}" 0.9.11 0.9.11
if "${check}" 0.9.11 0.9.10 >/dev/null 2>&1; then
echo "expected an unapproved npm binary mismatch to fail" >&2
exit 1
fi
CODEWHALE_ALLOW_NPM_BINARY_MISMATCH=1 \
"${check}" 0.9.11 0.9.10 >/dev/null
echo "npm binary-version mismatch gate tests passed"