Need to pass lint

This commit is contained in:
Joe Bowser 2016-11-21 16:36:20 -08:00 committed by Steve Gill
parent c2ddd2da7f
commit a87eb7266f

View File

@ -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));
};