Github user vladimir-kotikov commented on a diff in the pull request:

    https://github.com/apache/cordova-windows/pull/177#discussion_r63247389
  
    --- Diff: bin/lib/check_reqs.js ---
    @@ -362,6 +362,36 @@ module.exports.run = function () {
         });
     };
     
    +/** Checks if Windows SDK required to build the target_platform is present
    + * @param {String}  target_platorm        Target platform ('8.1' or '10.0')
    + * @return {Boolean}                      Whether the min SDK required to 
build the platform is present  
    + *
    + */ 
    +module.exports.isWinSDKPresent = function (target_platform) {
    +    return getInstalledWindowsSdks()
    +    .then(function (installedSdks) {
    +        var reqVersion = 
Version.tryParse(REQUIRED_VERSIONS[target_platform].windowssdk);
    +        var hasSdkInstalled = installedSdks.some(function (installedSdk) {
    --- End diff --
    
    In `getInstalledWindowsSdks` If registry search fails, `fail` handler 
passes empty string below, as if it didn't get any output. Due to this regex 
search fails to find any SDKs and the last line returns an empty array
    ```js
         var installedSdks = [];
         // ... skipped ...
         .thenResolve(installedSdks);
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to