From 5582557c7691896c256527e2bf749be1cf6d03e8 Mon Sep 17 00:00:00 2001 From: Joe Gomain Hoyes Date: Mon, 7 Sep 2020 17:06:38 +0700 Subject: [PATCH] fix supposedly missuse of npx instead of yarn fixes #255 --- integration-tests/yarn-workspaces/yarn-workspaces.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/yarn-workspaces/yarn-workspaces.sh b/integration-tests/yarn-workspaces/yarn-workspaces.sh index 16e8ff6e..c2302f02 100755 --- a/integration-tests/yarn-workspaces/yarn-workspaces.sh +++ b/integration-tests/yarn-workspaces/yarn-workspaces.sh @@ -12,14 +12,14 @@ echo "modify hoisted left-pad" npx replace leftPad patch-package node_modules/left-pad/index.js echo "create patch file" -npx patch-package left-pad +yarn patch-package left-pad echo "modify unhoisted left-pad" npx replace leftPad patch-package packages/a/node_modules/left-pad/index.js echo "create patch file" cd packages/a -npx patch-package left-pad +yarn patch-package left-pad echo "go back to root" cd ../../