Skip to content

Commit dcb018f

Browse files
committed
lint
1 parent 6594bba commit dcb018f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/platform-info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var utils = require('./utils');
3838
var execP = Promise.denodeify(utils.execute);
3939

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

0 commit comments

Comments
 (0)