Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Little-known Yarn feature: any script with a colon in its name (`build:foo`) can
"typescript": "^3.8.0"
},
"scripts": {
"g:tsc": "cd $INIT_CWD && tsc"
"g:tsc": "cd \"$INIT_CWD\" && tsc"
}
}
```
Expand Down Expand Up @@ -172,7 +172,7 @@ Should you want to run a script in the base of your project:
```json
{
"scripts": {
"build": "node ${PROJECT_CWD}/scripts/update-contributors.js"
"build": "node \"$PROJECT_CWD/scripts/update-contributors.js\""
}
}
```
Expand Down
Loading