Skip to content

Commit a9ef071

Browse files
committed
Fix path from /internals/symlinks to /internal/symlinks
1 parent 7e7830d commit a9ef071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/php-wasm/node/src/lib/load-runtime.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export async function loadNodeRuntime(
9595
* in the Emscripten's filesystem and mount the OS directory
9696
* to the Emscripten filesystem.
9797
*
98-
* The directory is mounted to the `/internals/symlinks` directory to avoid
98+
* The directory is mounted to the `/internal/symlinks` directory to avoid
9999
* conflicts with existing VFS directories.
100100
* We can set a arbitrary mount path because readlink is the source of truth
101101
* for the path and Emscripten will accept it as if it was the real link path.
@@ -111,7 +111,7 @@ export async function loadNodeRuntime(
111111
)
112112
);
113113
const symlinkPath = joinPaths(
114-
`/internals/symlinks`,
114+
`/internal/symlinks`,
115115
absoluteSourcePath
116116
);
117117
if (

0 commit comments

Comments
 (0)