views:

58

answers:

1

What I trying to do is to run hg commands using firefox extension without showing command prompt window all the time.

I initiate process with hg.exe file and then execute hg commands by passing arguments in to it.

  1. process.init("hg.exe");
  2. args["update"];
  3. process.run(true,args,args.lenght);

But I am confused how I am going to use hstart.exe on top of it

Any suggestions ?

A: 

Just pass hg commands as arguments in hstart.exe...that will do the trick !!!

Nitesh