ready4testing

This commit is contained in:
Gerrit Linnemann 2015-11-02 17:39:21 +01:00
parent c2790b7958
commit 93b6fd7218
2 changed files with 6 additions and 6 deletions

View File

@ -12,6 +12,7 @@ var exec = require('child_process').exec;
var fs = require("fs");
var http = require('http');
var wget = require('wget');
var grep = require('simple-grep');
var App = null;
@ -78,11 +79,9 @@ exports.play = function(idx) {
}
}
var catCmd = 'cat ' + m3u + ' | grep http://';
exec('cat ' + m3u, function(error, stdout, stderr) {
Log.inspect('Radio: Play', stdout);
Log.inspect('Radio: Douh', stderr);
Log.inspect('Radio: Douh', error);
grep('http://', m3u, function(list){
Log.inspect('Radio: grep', list);
});

View File

@ -18,6 +18,7 @@
"eyespect": "*",
"interface-addresses": "*",
"playlist-parser": "*",
"wget": "*"
"wget": "*",
"simple-grep": "*"
}
}