mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
Merge pull request #3598 from Pragadesh-45/feat/folder-recursive-rename-win32
bugfix/folder recursive rename win32 (fixes: #3597) updates: #3236
This commit is contained in:
@@ -372,7 +372,7 @@ const registerRendererEventHandlers = (mainWindow, watcher, lastOpenedCollection
|
||||
await fsExtra.move(tempDir, newPath, { overwrite: true });
|
||||
await fsExtra.remove(oldPath);
|
||||
} else {
|
||||
await fs.rename(oldPath, newPath);
|
||||
await fs.renameSync(oldPath, newPath);
|
||||
}
|
||||
return newPath;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user