Skip to content

Commit 4c0fb6c

Browse files
authored
Fix cwd for Notebooks (3.x) (#188)
* Fix notebooks location * Update snapshots
1 parent 9e2d3ab commit 4c0fb6c

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

12.7 KB
Loading
12.7 KB
Loading

0 commit comments

Comments
 (0)