From 0e9c89845c1fbf96045b996abbb619fa9a0737a6 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Sat, 11 Mar 2023 05:44:49 +0100 Subject: [PATCH] unresolved: add missing fetch step --- unresolved/APKBUILD | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/unresolved/APKBUILD b/unresolved/APKBUILD index c675c06..a5810e1 100644 --- a/unresolved/APKBUILD +++ b/unresolved/APKBUILD @@ -17,6 +17,12 @@ options="!check" # whoops no tests export CARGO_REGISTRIES_CRATES_IO_PROTOCOL="sparse" +prepare() { + default_prepare + + cargo fetch --locked +} + build() { cargo build --frozen --release }