You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by al...@apache.org on 2017/07/17 07:48:29 UTC

cordova-windows git commit: CB-13022 Correct a VS installation warning during check_reqs

Repository: cordova-windows
Updated Branches:
  refs/heads/master 8d971f5e5 -> 0d0fcffc9


CB-13022 Correct a VS installation warning during check_reqs


Project: http://git-wip-us.apache.org/repos/asf/cordova-windows/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-windows/commit/0d0fcffc
Tree: http://git-wip-us.apache.org/repos/asf/cordova-windows/tree/0d0fcffc
Diff: http://git-wip-us.apache.org/repos/asf/cordova-windows/diff/0d0fcffc

Branch: refs/heads/master
Commit: 0d0fcffc95360a7f10600b316bda7f3e8728621a
Parents: 8d971f5
Author: Alexander Sorokin <al...@akvelon.com>
Authored: Fri Jul 14 16:18:22 2017 +0300
Committer: Alexander Sorokin <al...@akvelon.com>
Committed: Mon Jul 17 10:48:17 2017 +0300

----------------------------------------------------------------------
 bin/lib/check_reqs.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/0d0fcffc/bin/lib/check_reqs.js
----------------------------------------------------------------------
diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js
index 6c70ddc..9b76e39 100644
--- a/bin/lib/check_reqs.js
+++ b/bin/lib/check_reqs.js
@@ -279,7 +279,7 @@ var checkMSBuild = function (windowsTargetVersion, windowsPhoneTargetVersion) {
                 ? shortenVersion(appropriateVersion)
                 : Q.reject('MSBuild tools v.' + shortenVersion(msbuildRequiredVersion) + ' not found. ' +
                     'Please install Visual Studio ' + mapVSVersionToName(getMinimalRequiredVersionFor('visualstudio', windowsTargetVersion, windowsPhoneTargetVersion)) +
-                    ' from https://www.visualstudio.com/downloads/download-visual-studio-vs');
+                    ' or higher from https://www.visualstudio.com/downloads/download-visual-studio-vs');
         });
 };
 
@@ -296,7 +296,7 @@ var checkVS = function (windowsTargetVersion, windowsPhoneTargetVersion) {
                 ? shortenVersion(appropriateVersion)
                 : Q.reject('Required version of Visual Studio not found. Please install Visual Studio ' +
                     mapVSVersionToName(vsRequiredVersion) +
-                    ' from https://www.visualstudio.com/downloads/download-visual-studio-vs');
+                    ' or higher from https://www.visualstudio.com/downloads/download-visual-studio-vs');
         });
 };
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org