Skip to content

Commit 9487762

Browse files
author
Sora Morimoto
authored
Merge pull request #30 from avsm/opam-2.0.7
Update version of opam for Linux to 2.0.7
2 parents 84b4adb + 96411a2 commit 9487762

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

__tests__/installer.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ describe("installer tests", () => {
2525
}, 100000);
2626

2727
it("Acquires opam source", async () => {
28-
await installer.getOpam("2.0.5", "");
28+
await installer.getOpam("2.0.7", "");
2929
}, 1000000);
3030

3131
it("Acquires opam source and uses custom repository", async () => {
3232
await installer.getOpam(
33-
"2.0.5",
33+
"2.0.7",
3434
"https://github.com/ocaml/opam-repository.git#master"
3535
);
3636
}, 1000000);

lib/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async function acquireOpamWindows(version: string, customRepository: string) {
5353
}
5454

5555
async function acquireOpamLinux(version: string, customRepository: string) {
56-
const opamVersion = "2.0.5";
56+
const opamVersion = "2.0.7";
5757
const fileName = getOpamFileName(opamVersion);
5858
const downloadUrl = getOpamDownloadUrl(opamVersion, fileName);
5959
const repository =

0 commit comments

Comments
 (0)