mirror of
https://github.com/videojs/video.js.git
synced 2024-12-14 11:23:30 +02:00
25 lines
684 B
JavaScript
25 lines
684 B
JavaScript
|
module.exports = function(grunt) {
|
||
|
grunt.registerTask('saucelabs', function() {
|
||
|
var exec = require('child_process').exec;
|
||
|
var done = this.async();
|
||
|
|
||
|
if (this.args[0] == 'connect') {
|
||
|
exec('curl https://gist.githubusercontent.com/santiycr/5139565/raw/sauce_connect_setup.sh | bash',
|
||
|
function(error, stdout, stderr) {
|
||
|
if (error) {
|
||
|
grunt.log.error(error);
|
||
|
return done();
|
||
|
}
|
||
|
|
||
|
grunt.verbose.error(stderr.toString());
|
||
|
grunt.verbose.writeln(stdout.toString());
|
||
|
grunt.task.run(['karma:saucelabs']);
|
||
|
done();
|
||
|
});
|
||
|
} else {
|
||
|
grunt.task.run(['karma:saucelabs']);
|
||
|
done();
|
||
|
}
|
||
|
});
|
||
|
}
|