Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d980e49

Browse files
committedFeb 27, 2025·
Better messages (Round 2)
Signed-off-by: Sora Morimoto <sora@morimoto.io>
1 parent 641d8b9 commit d980e49

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed
 

‎dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎packages/setup-ocaml/src/opam.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,7 @@ export async function repositoryRemoveAll() {
199199
}
200200

201201
export async function update() {
202-
await core.group(
203-
"Updating opam repositories to get latest available packages",
204-
async () => {
205-
await exec("opam", ["update"]);
206-
},
207-
);
202+
await core.group("Updating opam repositories", async () => {
203+
await exec("opam", ["update"]);
204+
});
208205
}

0 commit comments

Comments
 (0)
Please sign in to comment.