Skip to content

Commit

Permalink
fix: cargo dependency installation for mac (#50)
Browse files Browse the repository at this point in the history
* fix: cargo dependency installation for mac

* fix: update aqua recommended version
  • Loading branch information
shamsartem committed Oct 4, 2022
1 parent 5546006 commit 3698b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import { Command, Flags } from "@oclif/core";

export const AQUA_RECOMMENDED_VERSION = "0.7.5-342";
export const AQUA_RECOMMENDED_VERSION = "0.7.6-346";
export const MARINE_RECOMMENDED_VERSION = "0.12.4";
export const MREPL_RECOMMENDED_VERSION = "0.18.6";
export const MARINE_RS_SDK_TEMPLATE_VERSION = "0.6.15";
Expand Down
3 changes: 2 additions & 1 deletion src/lib/rust.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,10 @@ export const ensureCargoDependency = async ({
await execPromise(
`${CARGO}${
typeof toolchain === "string" ? ` +${toolchain}` : ""
} install ${nameAndVersion} ${unparseFlags(
} install ${name} ${unparseFlags(
{
root: dependencyPath,
version,
},
commandObj
)}`,
Expand Down

0 comments on commit 3698b8d

Please sign in to comment.