From 1510f4d30f119984a7d6e8caa07dc7302bb27b36 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 27 Aug 2020 10:17:25 -0600 Subject: [PATCH] Build cookbook rust program before running fetch or ci-pkg --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 49dac73..eafa485 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,7 @@ update: cargo update --manifest-path redoxfs/Cargo.toml fetch: + cargo build --manifest-path cookbook/Cargo.toml --release cd cookbook && ./fetch.sh \ "$$(cargo run --manifest-path ../installer/Cargo.toml -- --list-packages -c ../initfs.toml)" \ "$$(cargo run --manifest-path ../installer/Cargo.toml -- --list-packages -c ../filesystem.toml)" @@ -82,6 +83,7 @@ ci-img: FORCE # CI packaging target ci-pkg: prefix FORCE + cargo build --manifest-path cookbook/Cargo.toml --release export PATH="$(PREFIX_PATH):$$PATH" && \ PACKAGES="$$(cargo run --manifest-path installer/Cargo.toml -- --list-packages -c ci.toml)" && \ cd cookbook && \