Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed May 1, 2015
1 parent 6594bba commit dcb018f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/platform-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var utils = require('./utils');
var execP = Promise.denodeify(utils.execute);

function checkInstalledLinux(pkg) {
return execP("dpkg", ["-s", pkg]).then(function(result) {
return execP("dpkg", ["-s", pkg]).then(function() {
return Promise.resolve();
}).catch(function() {
var msg = "missing package: " + pkg + ". Please install it";
Expand Down

0 comments on commit dcb018f

Please sign in to comment.