Github user SomaticIT commented on the pull request:

    https://github.com/apache/cordova-windows/pull/123#issuecomment-150876679
  
    @robpaveza @nikhilkh @rakatyal 
    Any news on this, it's a really painful error.
    
    The error in tests is an issue in @robpaveza fix 
[here](https://github.com/MSOpenTech/cordova-windows/blob/8ea8a719848e296e2cd54b2c5479160a9467046c/template/cordova/lib/MSBuildTools.js#L83).
    
    ````javascript
    if (version === '14.0' && path.indexOf('amd64')) {
        path = require('path').join(path, '..');
    }
    ````
    should be:
    ````javascript
    if (version === '14.0' && path.indexOf('amd64') !== -1) {
        path = require('path').join(path, '..');
    }
    ````
    Could this be fixed ?


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to