Modified the self updater to reset any local changes when updating #10

This commit is contained in:
Logan Cusano
2024-03-03 22:02:27 -05:00
parent 5d2097ecd4
commit c46b7c6ea6

View File

@@ -18,6 +18,15 @@ export const checkForUpdates = async () => {
if (latestCommitHash !== localCommitHash) {
console.log('An update is available. Updating...');
// Check if there have been any changes to the code
const gitStatus = await git.status()
console.log(gitStatus);
if (gitStatus.modified.length > 0){
// There is locally modified code
console.log("There is locally modified code, resetting...");
await git.reset('hard', ['origin/master'])
}
// Pull the latest changes from the remote repository
await git.pull();