Browse Source

update

all-modes
Petr Balashov 8 years ago
parent
commit
a14c41f77e
  1. 2
      main.js
  2. 2
      routes/shepherd.js

2
main.js

@ -59,7 +59,7 @@ if (appConfig.killIguanaOnStart) {
exec(iguanaGrep, function(error, stdout, stderr) {
if (stdout.indexOf('iguana') > -1) {
console.log('found another iguana process(es)');
const pkillCmd = os.platform() === 'win32' ? 'taskkill /f /im iguana.exe' : 'pkill -9 iguana';
const pkillCmd = os.platform() === 'win32' ? 'taskkill /f /im iguana.exe' : 'pkill -15 iguana';
exec(pkillCmd, function(error, stdout, stderr) {
console.log(pkillCmd + ' is issued');

2
routes/shepherd.js

@ -1432,7 +1432,7 @@ shepherd.appInfo = function() {
iguanaDir,
iguanaBin,
komodoDir,
komododBin
komododBin,
configLocation: iguanaDir + '/config.json',
cacheLocation: iguanaDir + '/shepherd',
};

Loading…
Cancel
Save