commit d20d06ff745de9754e24ed81028fb778388e9fb6 parent ccd2525c35defdfa2cf9de1cc769665a4465da34 Author: Robin Bron <robin.bron@yourhosting.nl> Date: Fri, 25 Sep 2026 00:25:54 +0200 Fix dep src url Diffstat:
| M | mk/ci-setup.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mk/ci-setup.sh b/mk/ci-setup.sh @@ -64,7 +64,7 @@ if [ "${CHECK_ONLY}" = "0" ]; then if ! command -v dep >/dev/null 2>&1; then msg "installing dep ${DEP_VERSION}" - curl -fsSL "https://github.com/finwo/dep/releases/download/v${DEP_VERSION}/dep-linux-x64" \ + curl -fsSL "https://github.com/finwo/dep/releases/download/${DEP_VERSION}/dep-linux-x64" \ -o /usr/local/bin/dep || die "could not fetch dep ${DEP_VERSION}" chmod 0755 /usr/local/bin/dep fi