From 5d7ab662752370e457daa99176a6af981b614483 Mon Sep 17 00:00:00 2001 From: Sylvain Wallez Date: Tue, 7 Sep 2021 19:26:27 +0200 Subject: [PATCH] Update env var setting in Make.toml --- Makefile.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 03693789..f969d67e 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -7,7 +7,7 @@ STACK_VERSION = { value = "7.x-SNAPSHOT", condition = { env_not_set = ["STACK_VE # Determines the distribution of docker container used. Either platinum or free TEST_SUITE = { value = "free", condition = { env_not_set = ["TEST_SUITE"] }} # Set publish flags to dry-run by default, to force user to explicitly define for publishing -CARGO_MAKE_CARGO_PUBLISH_FLAGS = "--dry-run" +CARGO_MAKE_CARGO_PUBLISH_FLAGS = { value = "--dry-run", condition = { env_not_set = ["CARGO_MAKE_CARGO_PUBLISH_FLAGS"] }} # RUST_BACKTRACE is set to "full" in cargo make's builtin makefiles/stable.toml RUST_BACKTRACE = { value = "0", condition = { env_not_set = ["RUST_BACKTRACE"]}}