From 6dc22c547f66ccefa12500c70650b44662adbbe9 Mon Sep 17 00:00:00 2001 From: Pyra <92104930+pyranota@users.noreply.github.com> Date: Tue, 2 Dec 2025 11:17:37 +0100 Subject: [PATCH] nit(cli): remove `--use-raw-requirements` (#7272) new workspace dependencies system renders it useless Signed-off-by: pyranota --- cli/src/commands/flow/flow.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cli/src/commands/flow/flow.ts b/cli/src/commands/flow/flow.ts index d3475f9cd8..954b09f876 100644 --- a/cli/src/commands/flow/flow.ts +++ b/cli/src/commands/flow/flow.ts @@ -196,7 +196,6 @@ async function run( async function generateLocks( opts: GlobalOptions & { yes?: boolean; - useRawRequirements?: boolean; } & SyncOptions, folder: string | undefined ) { @@ -322,10 +321,6 @@ const command = new Command() ) .arguments("[flow:file]") .option("--yes", "Skip confirmation prompt") - .option( - "-r --use-raw-requirements", - "Use raw requirements (requirements.txt, go.mod, package.json, etc) instead of generating them on the server (can also be set with USE_RAW_REQUIREMENTS=true environment variable)" - ) .option( "-i --includes ", "Comma separated patterns to specify which file to take into account (among files that are compatible with windmill). Patterns can include * (any string until '/') and ** (any string)"