Fix return value when folder needs relocation or does not exist during checkout
This commit is contained in:
2
main.js
2
main.js
@@ -877,7 +877,7 @@ app.whenReady().then(() => {
|
|||||||
*/
|
*/
|
||||||
ipcMain.handle('checkout-commit', async (_e, folderObj, hash) => {
|
ipcMain.handle('checkout-commit', async (_e, folderObj, hash) => {
|
||||||
if (folderObj.needsRelocation || !fs.existsSync(folderObj.path)) {
|
if (folderObj.needsRelocation || !fs.existsSync(folderObj.path)) {
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
const git = simpleGit(folderObj.path);
|
const git = simpleGit(folderObj.path);
|
||||||
// clean mode: alle lokalen Veränderungen verwerfen
|
// clean mode: alle lokalen Veränderungen verwerfen
|
||||||
|
|||||||
Reference in New Issue
Block a user