Skip to content

Commit

Permalink
chore: use yarn for running turbo commands (#6480)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Sep 16, 2024
1 parent f8befa6 commit cd53ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/turbo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const runTurbo = async (task, args, apiSecret, apiEndpoint) => {
command.push(...args);
const turboRoot = path.join(__dirname, "..", "..");
try {
return await spawnProcess("npx", command, {
return await spawnProcess("yarn", command, {
stdio: "inherit",
cwd: turboRoot,
env: {
Expand Down

0 comments on commit cd53ac9

Please sign in to comment.