Skip to content

Commit

Permalink
fix: apply linting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande committed Jan 25, 2025
1 parent 9989ad2 commit c728050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const installDependencies = async (
case "linuxmint":
return DEBIAN_BASED_DEPENDENT_PACKAGES;
case "ubuntu":
return parseInt(versionId.split(".")[0], 10) >= 24
return Number.parseInt(versionId.split(".")[0], 10) >= 24
? UBUNTU_24_DEPENDENT_PACKAGES
: DEBIAN_BASED_DEPENDENT_PACKAGES;
case "opensuse":
Expand Down

0 comments on commit c728050

Please sign in to comment.