Skip to content

Commit

Permalink
fix: add missing semver dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah committed Feb 3, 2021
1 parent 6e3df4b commit c2e26b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
"raw-body": "^2.4.1",
"resolve": "^1.12.0",
"safe-join": "^0.1.3",
"semver": "^7.3.4",
"static-server": "^2.2.1",
"strip-ansi-control-characters": "^2.0.0",
"temp-dir": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/lm/requirements.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const checkLFSFilters = async function () {

const checkHelperVersion = async function () {
try {
const result = await execa('git-credential-netlify', ['--version'])
const result = await execa('git-credential-netlify', ['version'])
return matchVersion(
result.stdout,
/git-credential-netlify\/([.\d]+).*/,
Expand Down

0 comments on commit c2e26b4

Please sign in to comment.