Need to pass lint

This commit is contained in:
Joe Bowser 2016-11-21 16:36:20 -08:00
parent 5017e2302b
commit ad40d33400

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