Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Dec 9, 2024
1 parent 003b568 commit 29c4b91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions turborepo-tests/helpers/setup_example_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ echo "node --version: $(node --version)"

# Use the right command for each package manager
if [ "$package_manager" == "npm" ]; then
package_manager_command="npx @turbo/workspaces convert . npm || true && npm install"
package_manager_command="bash -c 'npx @turbo/workspaces convert . npm || true' && npm install"
elif [ "$package_manager" == "pnpm" ]; then
package_manager_command="npx @turbo/workspaces convert . pnpm || true && pnpm install"
package_manager_command="bash -c 'npx @turbo/workspaces convert . pnpm || true' && pnpm install"
elif [ "$package_manager" == "yarn" ]; then
package_manager_command="npx @turbo/workspaces convert . yarn || true && yarn"
package_manager_command="bash -c 'npx @turbo/workspaces convert . yarn || true' && yarn"
fi

# All examples implement these two tasks
Expand Down

0 comments on commit 29c4b91

Please sign in to comment.