Skip to content

Commit

Permalink
Escape spaces in file paths (#18253)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkMarzeotti authored and nosolosw committed Nov 19, 2019
1 parent 24fbb35 commit 9a839de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/update-readmes.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ packages.forEach( ( entry ) => {
// Each target operates over the same file, so it needs to be processed synchronously,
// as to make sure the processes don't overwrite each other.
const { status, stderr } = spawnSync(
join( __dirname, '..', 'node_modules', '.bin', 'docgen' ),
join( __dirname, '..', 'node_modules', '.bin', 'docgen' ).replace( / /g, '\\ ' ),
[
join( 'packages', packageName, path ),
`--output packages/${ packageName }/README.md`,
Expand Down
2 changes: 1 addition & 1 deletion docs/tool/update-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ modules.forEach( ( entry ) => {
// until docgen provides a way to update many tokens at once, we need to make sure
// the output file is updated before starting the second pass for the next token.
const { status, stderr } = spawnSync(
join( __dirname, '..', '..', 'node_modules', '.bin', 'docgen' ),
join( __dirname, '..', '..', 'node_modules', '.bin', 'docgen' ).replace( / /g, '\\ ' ),
[
target,
`--output docs/designers-developers/developers/data/data-${ namespace.replace( '/', '-' ) }.md`,
Expand Down

0 comments on commit 9a839de

Please sign in to comment.