Skip to content

Commit

Permalink
WIP: proper symlink resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammerIn-wonderland committed Oct 30, 2024
1 parent 70bd810 commit dd0dfc4
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 146 deletions.
2 changes: 1 addition & 1 deletion src/api/Filesystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ class AnuraFilesystem implements AnuraFSOperations<any> {

symlink(path: string, ...rest: any[]) {
// @ts-ignore - Overloaded methods are scary
this.processPath(path).symlink(path, ...rest);
this.processPath(rest[0]).symlink(path, ...rest);
}

readlink(
Expand Down
Loading

0 comments on commit dd0dfc4

Please sign in to comment.