Skip to content

Commit 3bdf9f3

Browse files
authored
Fix cwd for Notebooks (#187)
* Debug location * Fixing location ? * Remove logs * Update snapshots
1 parent 4b0d9d8 commit 3bdf9f3

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

packages/xeus/src/web_worker_kernel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ export class WebWorkerKernel implements IKernel {
278278
if (await this._remoteKernel.isDir('/files')) {
279279
await this._remoteKernel.cd('/files');
280280
} else {
281-
await this._remoteKernel.cd(localPath);
281+
await this._remoteKernel.cd(`/drive/${localPath}`);
282282
}
283283
}
284284

8.71 KB
Loading
8.71 KB
Loading

0 commit comments

Comments
 (0)