mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-19 06:03:50 +01:00
fix: nano does not open root script if cd'd into a dir
This commit is contained in:
parent
3c03ac4f18
commit
7121b456f4
@ -150,8 +150,12 @@ export function ls(args: (string | number | boolean)[], server: BaseServer): voi
|
||||
return Terminal.error(`File is not on this server, connect to ${hostname} and try again`);
|
||||
}
|
||||
if (filename.startsWith("/")) filename = filename.slice(1);
|
||||
// Terminal.getFilepath needs leading slash to correctly work here
|
||||
if (prefix === "") filename = `/${filename}`;
|
||||
const filepath = Terminal.getFilepath(`${prefix}${filename}`);
|
||||
const code = toString(Terminal.getScript(filepath)?.code);
|
||||
// Terminal.getScript also calls Terminal.getFilepath and therefore also
|
||||
// needs the given parameter
|
||||
const code = toString(Terminal.getScript(`${prefix}${filename}`)?.code);
|
||||
Router.toScriptEditor({ [filepath]: code });
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user