Skip to content

Commit 5582557

Browse files
committed
fix supposedly missuse of npx instead of yarn
fixes ds300#255
1 parent 50f73bd commit 5582557

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration-tests/yarn-workspaces/yarn-workspaces.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ echo "modify hoisted left-pad"
1212
npx replace leftPad patch-package node_modules/left-pad/index.js
1313

1414
echo "create patch file"
15-
npx patch-package left-pad
15+
yarn patch-package left-pad
1616

1717
echo "modify unhoisted left-pad"
1818
npx replace leftPad patch-package packages/a/node_modules/left-pad/index.js
1919

2020
echo "create patch file"
2121
cd packages/a
22-
npx patch-package left-pad
22+
yarn patch-package left-pad
2323

2424
echo "go back to root"
2525
cd ../../

0 commit comments

Comments
 (0)