fix(catalog): remove retired push-window rule from release output

The "weekday 20-23" push window is retired; the release helper still
told the operator to observe it at the exact moment it pushed. Two
lines, one file — ordre 20260818T145115Z-1170729223-from-voyage.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013nUcNMXucyztssywSaHnoq
This commit is contained in:
Kjell Tore Guttormsen 2026-09-03 20:44:33 +02:00
commit bb693454ab

View file

@ -22,7 +22,7 @@
// # (--create-tag is a WRITE: without --write it only reports)
// node scripts/release-plugin.mjs <name> --write # write the bumped catalog ref
// node scripts/release-plugin.mjs <name> --write --commit # + git commit the catalog
// node scripts/release-plugin.mjs <name> --write --commit --push # + push (you own the push window)
// node scripts/release-plugin.mjs <name> --write --commit --push # + push
import { readFileSync, writeFileSync, existsSync } from 'node:fs';
import { execFileSync } from 'node:child_process';
@ -287,7 +287,7 @@ function main() {
execFileSync('git', ['-C', catalogDir, 'commit', '-m', msg], { stdio: 'inherit' });
console.log(' ✓ committed the catalog');
if (args.push) {
console.log(' → pushing (you own the push window: weekday 2023, weekend/holiday anytime)');
console.log(' → pushing');
execFileSync('git', ['-C', catalogDir, 'push', 'origin', 'HEAD'], { stdio: 'inherit' });
console.log(' ✓ pushed');
}