From 167b4870682762cbb815830109250aa7f0ba0eb5 Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Tue, 12 Aug 2025 09:41:44 -0400 Subject: [PATCH] techdocs-cli.js: remove -s yarn flag (#30658) techdocs-cli.js: remove -s yarn flag ``` Signed-off-by: Matt Brown --- scripts/techdocs-cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/techdocs-cli.js b/scripts/techdocs-cli.js index 7cc07f15fa..90dcc40f39 100644 --- a/scripts/techdocs-cli.js +++ b/scripts/techdocs-cli.js @@ -19,7 +19,7 @@ const { execSync } = require('child_process'); const args = process.argv.slice(2); -execSync(`yarn -s workspace @techdocs/cli build`, { stdio: 'inherit' }); +execSync(`yarn workspace @techdocs/cli build`, { stdio: 'inherit' }); execSync(`yarn workspace @techdocs/cli link`, { stdio: 'ignore' }); execSync(`techdocs-cli ${args.join(' ')}`, { stdio: 'inherit' }); execSync(`yarn workspace @techdocs/cli unlink`, { stdio: 'ignore' });