mirror of
https://gitlab.silvrtree.co.uk/martind2000/aodb.git
synced 2025-02-12 04:09:16 +00:00
15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
|
/**
|
||
|
* Created by martin on 10/31/16.
|
||
|
*/
|
||
|
var gulp = require('gulp');
|
||
|
var exec = require('child_process').exec;
|
||
|
|
||
|
module.exports = gulp.task('add-pushnotifications', function() {
|
||
|
|
||
|
exec('cordova plugin add phonegap-plugin-push --variable SENDER_ID=194436060542', function (err, stdout, stderr) {
|
||
|
console.log(stdout);
|
||
|
console.log(stderr);
|
||
|
});
|
||
|
|
||
|
});
|