Skip to content

Commit efb8e16

Browse files
author
Sora Morimoto
committed
Update version of opam for Linux to 2.0.7
1 parent 0a0e780 commit efb8e16

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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);

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)