We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1393bad commit b37f028Copy full SHA for b37f028
1 file changed
src/autorun.js
@@ -73,6 +73,12 @@ exports.autorun = function(dir) {
73
apps[file].on('close', appClosed);
74
apps[file].stdout.on('data', onStdout);
75
apps[file].stderr.on('data', onStderr);
76
+ } else if(file.match(/\.sh$/)) {
77
+ winston.info('start: ' + file);
78
+ apps[file] = child_process.spawn('/bin/bash', [ar + '/' + file]);
79
+ apps[file].on('close', appClosed);
80
+ apps[file].stdout.on('data', onStdout);
81
+ apps[file].stderr.on('data', onStderr);
82
} else if(file.match(/\.ino$/)) {
83
winston.info('start: ' + file);
84
apps[file] = child_process.spawn('/usr/bin/make',
0 commit comments