Skip to content

Commit

Permalink
fix(Build): Fix build with space in path (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver authored and brandonroberts committed Aug 28, 2017
1 parent b8ebe2e commit 257fc9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,5 @@ export function getBottomLevelName(packageName: string) {
}

export function baseDir(...dirs: string[]): string {
return path.resolve(__dirname, '../', ...dirs);
return `"${path.resolve(__dirname, '../', ...dirs)}"`;
}

0 comments on commit 257fc9d

Please sign in to comment.