From ad7c719f78e99638efaa1ce52632066b7cb1d507 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Wed, 24 Sep 2025 15:57:03 +0200 Subject: [PATCH] fix: snapshot help fallback --- src/commands/snapshot.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/commands/snapshot.ts b/src/commands/snapshot.ts index 5015469c..3ff62092 100644 --- a/src/commands/snapshot.ts +++ b/src/commands/snapshot.ts @@ -1,6 +1,5 @@ import {nextArg} from '@junobuild/cli-tools'; import {red} from 'kleur'; -import {logHelpDev} from '../help/dev.help'; import {logHelpSnapshot} from '../help/snapshot.help'; import { createSnapshotMissionControl, @@ -48,7 +47,7 @@ export const snapshot = async (args?: string[]) => { break; default: console.log(red('Unknown subcommand.')); - logHelpDev(); + logHelpSnapshot(args); } };