From 7a6c51af1ccea6060c3b8f0ce3bfb753d41bd337 Mon Sep 17 00:00:00 2001 From: rtm516 Date: Sat, 25 Oct 2025 21:14:42 +0100 Subject: [PATCH] Remove touch command from yarn installation This fixes an issue with installing on windows due to touch not being available --- npm/deepinstall.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/deepinstall.js b/npm/deepinstall.js index 802d83863..ae1b591f4 100644 --- a/npm/deepinstall.js +++ b/npm/deepinstall.js @@ -44,7 +44,7 @@ async.series([ command = 'yarn install --production --frozen-lockfile'; } else { - command = 'touch yarn.lock && yarn workspaces focus --all --production' + command = 'yarn workspaces focus --all --production' } break; case 'pnpm':