vote up 2 vote down star

At the moment I have a console application. I would like to be able to exit the application, update through svn, recompile and then relaunch. This is running under a Linux environment. At the moment I'm not sure how I would be able to relaunch the application. Is there a way to do this?

flag

0% accept rate

2 Answers

vote up 1 vote down

You could create a file, say .relaunch, when you exit the application in the specified circumstance and have the compile script remove the file and start the application when it has finished compiling if the relaunch file exists.

link|flag
Why the downvote? – Robert Gamble Oct 31 '08 at 2:07
removed the downvote. I've been affected by a few downvotes without exlanation. – anjanb Oct 31 '08 at 7:02
vote up 1 vote down

There is a low tech way to do this - assuming you want it all done in code:

1) Have your app launch a separate process (then exit) that:
a) Calls the svn.exe (or get svnkit...) with args to get the latest source
b) Calls you ant or whatever script to compile
c) Exec your newly compiled app
d) Exit

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.