From 4cc924ad1675287f47e29f0524b51e5b58d8a8d7 Mon Sep 17 00:00:00 2001 From: 1Code-JS <196545093+1Code-JS@users.noreply.github.com> Date: Thu, 19 Jun 2025 14:34:55 +0200 Subject: [PATCH] fix: One more typo in the Termux directory rename code in src/lib/commands.js --- src/lib/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/commands.js b/src/lib/commands.js index c44d74355..df56953af 100644 --- a/src/lib/commands.js +++ b/src/lib/commands.js @@ -360,7 +360,7 @@ export default { const content = await fs.readFile(); await fsOperation(Url.dirname(uri)).createFile(newname, content); await fs.delete(); - newUrl = newFilePath; + newUri = newFilePath; } else { newUri = await fs.renameTo(newname); }