From 6f59cdbb55074e01904103544f3d1b45c34ea4ef Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 3 Jul 2020 15:03:28 +0100 Subject: [PATCH] build: dev_cli: Prepare for splitting binaries by building all binaries In preparation for splitting the binaries into their own crates start building all the binaries in the workspace when running the build command inside the container. Signed-off-by: Rob Bradford --- scripts/dev_cli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev_cli.sh b/scripts/dev_cli.sh index 14bb06b21..4ea495928 100755 --- a/scripts/dev_cli.sh +++ b/scripts/dev_cli.sh @@ -224,7 +224,7 @@ cmd_build() { --volume "$CLH_ROOT_DIR:$CTR_CLH_ROOT_DIR" \ --env RUSTFLAGS="$rustflags" \ "$CTR_IMAGE" \ - cargo build \ + cargo build --all \ --target-dir "$CTR_CLH_CARGO_TARGET" \ "${cargo_args[@]}" && say "Binaries placed under $CLH_CARGO_TARGET/$target/$build" }