This is an automated email from the ASF dual-hosted git repository. brodybits pushed a commit to branch brodybits-drop-vs2013-support-wip39 in repository https://gitbox.apache.org/repos/asf/cordova-windows.git
commit 8fdb97a3d076253d6bdd6abe9572ab4d2d33ad6e Author: Christopher J. Brody <[email protected]> AuthorDate: Tue Dec 24 22:50:48 2019 -0500 fix template/cordova/lib/utils.js to really check for jsproj as opposed to obsolete shproj extension --- template/cordova/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/cordova/lib/utils.js b/template/cordova/lib/utils.js index 8c9b400..4f4b2cc 100644 --- a/template/cordova/lib/utils.js +++ b/template/cordova/lib/utils.js @@ -51,7 +51,7 @@ module.exports.isCordovaProject = function (platformpath) { if (fs.existsSync(platformpath)) { var files = fs.readdirSync(platformpath); for (var i in files) { - if (path.extname(files[i]) === '.shproj') { + if (path.extname(files[i]) === '.jsproj') { return true; } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
