Skip to content

Commit 257fc9d

Browse files
timdeschryverbrandonroberts
authored andcommitted
fix(Build): Fix build with space in path (#331)
1 parent b8ebe2e commit 257fc9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,5 +176,5 @@ export function getBottomLevelName(packageName: string) {
176176
}
177177

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

0 commit comments

Comments
 (0)