Skip to content

Commit

Permalink
PR Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dac09 committed Mar 2, 2021
1 parent f02b69c commit 63f9fd9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tasks/test-tutorial.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const testTutorial = async () => {

if (pathToProject) {
console.log(
`\n 🗂️ You have supplied a path ${projectPath}, we will not create a new `
`\n 🗂️ You have supplied the path ${projectPath}, we will not create a new `
)
console.log('Redwood project, we will use the app you have specified.')
} else {
Expand Down Expand Up @@ -60,11 +60,7 @@ const testTutorial = async () => {
const packagesPath = path.join(frameworkPath, 'packages')

// Link packages from framework
await execa(`ln -s ${packagesPath} ./packages`, {
shell: true,
stdio: 'inherit',
cwd: projectPath,
})
fs.symlinkSync(packagesPath, path.join(projectPath, 'packages'))

await execa('yarn install', {
shell: true,
Expand Down

0 comments on commit 63f9fd9

Please sign in to comment.