Fix return value when folder needs relocation or does not exist
This commit is contained in:
2
main.js
2
main.js
@@ -821,7 +821,7 @@ app.whenReady().then(() => {
|
|||||||
// Entferne das .git-Verzeichnis
|
// Entferne das .git-Verzeichnis
|
||||||
ipcMain.handle('remove-git-folder', async (_e, folderObj) => {
|
ipcMain.handle('remove-git-folder', async (_e, folderObj) => {
|
||||||
if (folderObj.needsRelocation || !fs.existsSync(folderObj.path)) {
|
if (folderObj.needsRelocation || !fs.existsSync(folderObj.path)) {
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
const gitDir = path.join(folderObj.path, '.git');
|
const gitDir = path.join(folderObj.path, '.git');
|
||||||
if (fs.existsSync(gitDir)) {
|
if (fs.existsSync(gitDir)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user