From 832e1ea79c3760393c974abed2584824ed56195f Mon Sep 17 00:00:00 2001 From: Joram van den Boezem Date: Sun, 29 Oct 2023 14:04:43 +0000 Subject: [PATCH] fix: change --worktree to --all --- src/prepare.ts | 2 +- src/publish.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/prepare.ts b/src/prepare.ts index 575e2c13..b7210d99 100644 --- a/src/prepare.ts +++ b/src/prepare.ts @@ -29,7 +29,7 @@ export async function prepare( ? [ "workspaces", "foreach", - "--worktree", + "--all", "--topological", "--verbose", "--no-private", diff --git a/src/publish.ts b/src/publish.ts index 56113915..c1ea53ef 100644 --- a/src/publish.ts +++ b/src/publish.ts @@ -35,7 +35,7 @@ export async function publish( ? [ "workspaces", "foreach", - "--worktree", + "--all", "--topological", "--verbose", "--no-private",