Skip to content

Commit

Permalink
[TIMOB-13633] Fixed bug with cancelling an sdk uninstall proceeds to …
Browse files Browse the repository at this point in the history
…uninstall the sdk.
  • Loading branch information
cb1kenobi committed Aug 2, 2013
1 parent 5bc9efa commit 2d80a02
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/commands/sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -873,8 +873,12 @@ SdkSubcommands.uninstall = {
}
return true;
}
}).prompt(function () {
}).prompt(function (err) {
logger.log();
if (err) {
logger.log();
process.exit(1);
}
next();
});
}
Expand Down

0 comments on commit 2d80a02

Please sign in to comment.