Skip to content

Commit

Permalink
Merge pull request #30 from avsm/opam-2.0.7
Browse files Browse the repository at this point in the history
Update version of opam for Linux to 2.0.7
  • Loading branch information
Sora Morimoto authored Jul 3, 2020
2 parents 84b4adb + 96411a2 commit 9487762
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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 lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 9487762

Please sign in to comment.