Skip to content

Commit

Permalink
Update version of opam for Linux to 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Sora Morimoto committed Jul 3, 2020
1 parent 0a0e780 commit efb8e16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions __tests__/installer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ describe("installer tests", () => {
}, 100000);

it("Acquires opam source", async () => {
await installer.getOpam("2.0.5", "");
await installer.getOpam("2.0.7", "");
}, 1000000);

it("Acquires opam source and uses custom repository", async () => {
await installer.getOpam(
"2.0.5",
"2.0.7",
"https://github.com/ocaml/opam-repository.git#master"
);
}, 1000000);
Expand Down
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async function acquireOpamWindows(version: string, customRepository: string) {
}

async function acquireOpamLinux(version: string, customRepository: string) {
const opamVersion = "2.0.5";
const opamVersion = "2.0.7";
const fileName = getOpamFileName(opamVersion);
const downloadUrl = getOpamDownloadUrl(opamVersion, fileName);
const repository =
Expand Down

0 comments on commit efb8e16

Please sign in to comment.