Skip to content

Commit

Permalink
feat: add podman to virtualization (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
btkostner committed Jun 26, 2023
1 parent fc7585c commit b744694
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/helpers/virtualization.js
Expand Up @@ -17,6 +17,14 @@ module.exports = {
]).then(v => utils.determineFound('Parallels', v[0], v[1]));
},

getPodmanInfo: () => {
utils.log('trace', 'getPodmanInfo');
return Promise.all([
utils.run('podman --version').then(utils.findVersion),
utils.which('podman'),
]).then(v => utils.determineFound('Podman', v[0], v[1]));
},

getVirtualBoxInfo: () => {
utils.log('trace', 'getVirtualBoxInfo');
return Promise.all([
Expand Down

0 comments on commit b744694

Please sign in to comment.