Skip to content

Commit ddbb424

Browse files
committed
Fix toolchain dir mkdirp
Signed-off-by: paulober <[email protected]>
1 parent 4ab880a commit ddbb424

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
@@ -96,7 +96,7 @@ const CMAKE_PLATFORMS: { [key: string]: string } = {
9696
const homeDirectory: string = homedir();
9797

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

0 commit comments

Comments
 (0)