- Implemented a new param for launching client processes to wait for the process to close
- Waiting for the bash script to finish before restarting the application
This commit is contained in:
Logan Cusano
2024-03-24 19:09:17 -04:00
parent ed04e24fc6
commit 64edc612df
2 changed files with 14 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ export const checkForUpdates = async () => {
// Run the post-update script
console.log('Running post-update script...');
await launchProcess("bash", ['./post-update.sh']);
await launchProcess("bash", ['./post-update.sh'], true);
// Restart the application to apply the updates
console.log('Update completed successfully. Restarting the application...');