******************************/
function getCurrentTimezone(cb) {
- grunt.utils.spawn({
+ grunt.util.spawn({
cmd: "systemsetup",
args: ["gettimezone"]
}, function (err, result, code) {
}
function getCurrentTimezone(cb) {
- grunt.utils.spawn({
+ grunt.util.spawn({
cmd: "systemsetup",
args: ["gettimezone"]
}, function (err, result, code) {
}
function getAllTimezones(cb) {
- grunt.utils.spawn({
+ grunt.util.spawn({
cmd: "systemsetup",
args: ["listtimezones"]
}, function (err, result, code) {
}
function setTimezone(zone, cb) {
- grunt.utils.spawn({
+ grunt.util.spawn({
cmd: "systemsetup",
args: ["settimezone", zone]
}, function (err, result, code) {
}
function testZone(zone, cb) {
- grunt.utils.spawn({
+ grunt.util.spawn({
cmd: "grunt",
args: ["zone"]
}, function (err, result, code) {