I have a program that consists of two programs: Updater and WorkMaker.
Whenever there is an update for WorkMaker – Updater kills it, downloads updates, and runs it again.
But say I came up with new Updater program.
How do I update it? Through WorkMaker? Through the third program?
Thanks.
I have a program that consists of two programs: Updater and WorkMaker. Whenever there
Share
The simplest solution IMHO is:
At the moment was requested update
MainProgramdownloadsUpdater, along with updates, after launchesUpdater.Updater closes
MainProgram, makes update and relaunchMainProgram, or simply exit.In this way you have flexible way to update your program (
MainProgram), but alsoUpdateritself, when its required.Hope this helps.