From 8bf4676a089c0ec990a3a13fb1afb1097028af4c Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 31 Oct 2023 14:41:36 +0000 Subject: [PATCH] fix(ci): install shasum --- .fluentci/src/dagger/jobs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.fluentci/src/dagger/jobs.ts b/.fluentci/src/dagger/jobs.ts index 362414f..99fdf1b 100644 --- a/.fluentci/src/dagger/jobs.ts +++ b/.fluentci/src/dagger/jobs.ts @@ -20,7 +20,7 @@ const baseCtr = (client: Client, pipeline: string) => { .container() .from("alpine:latest") .withExec(["apk", "update"]) - .withExec(["apk", "add", "bash", "curl"]) + .withExec(["apk", "add", "bash", "curl", "perl-utils"]) .withMountedCache("/nix", client.cacheVolume("nix")) .withMountedCache("/etc/nix", client.cacheVolume("nix-etc")) );