Skip to content

Commit

Permalink
Try to pass macOS dependency install test
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed May 23, 2024
1 parent b5a4313 commit f6f5a15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/version_checker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const python3VersionChecker = theBetterOfEither(
pythonAliasVersionChecker
);
export const nodeVersionChecker = basicChecker(config.nodeVersion, 'node -v', false);
export const pylintVersionChecker = basicChecker(config.pylintVersion, 'pip3 show pylint', false);
export const pylintVersionChecker = basicChecker(config.pylintVersion, 'pylint --version', false);
export const npmVersionChecker = basicChecker(config.npmVersion, 'npm --version', false);
export const pnpmVersionChecker = basicChecker(config.pnpmVersion, 'pnpm --version', false);
export const brewVersionChecker = basicChecker(new Version('0.0.0'), 'brew -v', false);
Expand Down

0 comments on commit f6f5a15

Please sign in to comment.