Skip to content

Commit

Permalink
feat: support homebrew on linux (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
gengjiawen authored Aug 15, 2021
1 parent 613d99d commit f1cd4da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/envinfo.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/helpers/managers.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports = {

getHomebrewInfo: () => {
utils.log('trace', 'getHomebrewInfo');
if (utils.isMacOS)
if (utils.isMacOS || utils.isLinux)
return Promise.all([
utils.run('brew --version').then(utils.findVersion),
utils.which('brew'),
Expand Down

0 comments on commit f1cd4da

Please sign in to comment.