From f21c82850fb7ea3e4966e81921799464a86841e5 Mon Sep 17 00:00:00 2001 From: Nace Logar Date: Sun, 15 Feb 2015 16:51:34 +0100 Subject: [PATCH] Added env credentials --- .jshintrc | 1 + Gruntfile.js | 6 ++---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.jshintrc b/.jshintrc index 4b3a611..ae2cb33 100644 --- a/.jshintrc +++ b/.jshintrc @@ -85,6 +85,7 @@ "angular": true, "_": true, "module": true, + "process": true, "require": true, "inject": true, "expect": true, diff --git a/Gruntfile.js b/Gruntfile.js index 977eff5..39679d9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -266,10 +266,8 @@ module.exports = function(grunt) { // of the platforms specified above, include these options. // See https://build.phonegap.com/ remote: { -// username: process.env['PGB_USERNAME'], - username: '', -// password: process.env['PGB_PASSWORD'], - password: '', + username: process.env.PGB_USERNAME, + password: process.env.PGB_PASSWORD, platforms: [] // platforms: ['android', 'blackberry', 'ios', 'symbian', 'webos', 'wp7'] },