From a87eb7266f4099946508149d4d7a7246c318abde Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Mon, 21 Nov 2016 16:36:20 -0800 Subject: [PATCH] Need to pass lint --- bin/templates/cordova/lib/AndroidProject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/templates/cordova/lib/AndroidProject.js b/bin/templates/cordova/lib/AndroidProject.js index c55ee6c8..fa1c6129 100644 --- a/bin/templates/cordova/lib/AndroidProject.js +++ b/bin/templates/cordova/lib/AndroidProject.js @@ -202,7 +202,7 @@ AndroidProject.prototype.getUninstaller = function (type) { */ AndroidProject.prototype.isClean = function() { - var build_path = path.join(this.projectDir, "build"); + var build_path = path.join(this.projectDir, 'build'); //If the build directory doesn't exist, it's clean return !(fs.existsSync(build_path)); };