From 85555542bf5efb90fcedffd8d36934251e05190b Mon Sep 17 00:00:00 2001 From: Blossom Date: Fri, 15 May 2026 21:20:36 +0800 Subject: [PATCH] replace sync deprecation placeholder link (#9180) --- cli/src/commands/sync/pull.ts | 2 +- cli/src/commands/sync/push.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/commands/sync/pull.ts b/cli/src/commands/sync/pull.ts index adfd486294..90a31f4919 100644 --- a/cli/src/commands/sync/pull.ts +++ b/cli/src/commands/sync/pull.ts @@ -156,7 +156,7 @@ export async function downloadZip( function stub(_opts: GlobalOptions & { override: boolean }, _dir: string) { console.log( colors.red.underline( - 'Pull is deprecated. Use "sync pull --raw" instead. See for more information.' + 'Pull is deprecated. Use "sync pull --raw" instead. See https://www.windmill.dev/docs/advanced/cli/sync for more information.' ) ); } diff --git a/cli/src/commands/sync/push.ts b/cli/src/commands/sync/push.ts index e95fa048be..798b0db871 100644 --- a/cli/src/commands/sync/push.ts +++ b/cli/src/commands/sync/push.ts @@ -6,7 +6,7 @@ import { GlobalOptions } from "../../types.ts"; function stub(_opts: GlobalOptions, _dir?: string) { log.info( colors.red.underline( - 'Push is deprecated. Use "sync push --raw" instead. See for more information.' + 'Push is deprecated. Use "sync push --raw" instead. See https://www.windmill.dev/docs/advanced/cli/sync for more information.' ) ); }