Skip to content

Commit

Permalink
Merge pull request #23 from infosia/winstore_deployCmd
Browse files Browse the repository at this point in the history
Remove error message for Windows Store deploy command
  • Loading branch information
sgtcoolguy committed Oct 6, 2015
2 parents b489685 + 26e9f51 commit 78ca2d5
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions lib/winstore.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,16 +344,6 @@ function detect(options, callback) {
return finalize();
}

if (Object.keys(results.windows).every(function (v) { return !results.windows[v].deployCmd; })) {
results.issues.push({
id: 'WINDOWS_STORE_SDK_MISSING_DEPLOY_CMD',
type: 'error',
message: __('Microsoft Windows Store SDK is missing the deploy command.') + '\n' +
__('You will be unable to build Windows Store apps.')
});
return finalize();
}

var preferred = options.preferred;
if (!results.windows[preferred] || !results.windows[preferred].supported) {
preferred = Object.keys(results.windows).filter(function (v) { return results.windows[v].supported; }).sort().pop();
Expand Down

0 comments on commit 78ca2d5

Please sign in to comment.