Skip to content

Commit

Permalink
Fix toolchain dir mkdirp
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <44974737+paulober@users.noreply.github.com>
  • Loading branch information
paulober committed Dec 5, 2024
1 parent 4ab880a commit ddbb424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/download.mts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const CMAKE_PLATFORMS: { [key: string]: string } = {
const homeDirectory: string = homedir();

export function buildBasicToolchainPath(absolute: boolean): string {
const relPath = joinPosix(homeDirectory, ".pico-sdk", "toolchain");
const relPath = joinPosix(".pico-sdk", "toolchain");
if (absolute) {
return joinPosix(homeDirectory.replaceAll("\\", "/"), relPath);
} else {
Expand Down

0 comments on commit ddbb424

Please sign in to comment.