mirror of https://github.com/lukechilds/Agama.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
385 B
10 lines
385 B
//SuperNET iguana app launcher
|
|
|
|
//var exec = require('child_process').exec
|
|
//exec does not return obj with stream but instead the whole buffer output from proc
|
|
//spawn returns objects with stderr and out streams
|
|
//for question contact ca333@keemail.me
|
|
|
|
const spawn = require('child_process').spawn;
|
|
var iguana = path.join(__dirname, '/assets/iguana/iguana');
|
|
//var os = require('os');
|
|
|