Skip to content

Commit

Permalink
Removing corepack usage from else clause
Browse files Browse the repository at this point in the history
  • Loading branch information
“Thavachelvam committed Jan 14, 2025
1 parent f98630a commit 3ef88b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions npm_and_yarn/lib/dependabot/npm_and_yarn/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ def self.run_npm_command(command, fingerprint: command)
package_manager_run_command(NpmPackageManager::NAME, command, fingerprint: fingerprint)
else
Dependabot::SharedHelpers.run_shell_command(
"corepack npm #{command}",
fingerprint: "corepack npm #{fingerprint}"
"npm #{command}",
fingerprint: "npm #{fingerprint}"
)
end
end
Expand Down

0 comments on commit 3ef88b3

Please sign in to comment.