From e3685f5ca749739d79bc4a85533a515748800392 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sun, 22 Feb 2026 15:23:42 -0800 Subject: [PATCH] Fix usage examples: mise tasks with #USAGE don't need -- separator Co-Authored-By: Claude Opus 4.6 --- mise-tasks/branch-cleanup | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mise-tasks/branch-cleanup b/mise-tasks/branch-cleanup index 0729be9..9ddf618 100755 --- a/mise-tasks/branch-cleanup +++ b/mise-tasks/branch-cleanup @@ -17,10 +17,10 @@ Uses git operations directly (SSH for remote), no API token needed. Protected branches (main) are never deleted. Usage: - mise run branch-cleanup # interactive cleanup (30-day cutoff) - mise run branch-cleanup -- --cutoff 7 # only branches older than 7 days - mise run branch-cleanup -- --cutoff 0 # all merged branches regardless of age - mise run branch-cleanup -- --dry-run # preview only + mise run branch-cleanup # interactive cleanup (30-day cutoff) + mise run branch-cleanup --cutoff 7 # only branches older than 7 days + mise run branch-cleanup --cutoff 0 # all merged branches regardless of age + mise run branch-cleanup --dry-run # preview only """ import subprocess