Skip to content

Commit 04c16e9

Browse files
committed
Fix toolchain dir mkdirp
Signed-off-by: paulober <[email protected]>
1 parent aac35ed commit 04c16e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/download.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const CMAKE_PLATFORMS: { [key: string]: string } = {
9797
const homeDirectory: string = homedir();
9898

9999
export function buildBasicToolchainPath(absolute: boolean): string {
100-
const relPath = joinPosix(homeDirectory, ".pico-sdk", "toolchain");
100+
const relPath = joinPosix(".pico-sdk", "toolchain");
101101
if (absolute) {
102102
return joinPosix(homeDirectory.replaceAll("\\", "/"), relPath);
103103
} else {

0 commit comments

Comments
 (0)