From b2f3570bbf050e33f557830b9818d53f2a75aeca Mon Sep 17 00:00:00 2001 From: appflowy Date: Tue, 23 Nov 2021 15:30:08 +0800 Subject: [PATCH] print the flutter and rust env --- frontend/Makefile.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/Makefile.toml b/frontend/Makefile.toml index b7b73101c7..d6f293c27a 100644 --- a/frontend/Makefile.toml +++ b/frontend/Makefile.toml @@ -99,6 +99,7 @@ LINUX_ARCH = "arm64" [tasks.echo_env] script = [ ''' + echo "-------- Env Parameters --------" echo CRATE_TYPE: ${CRATE_TYPE} echo BUILD_FLAG: ${BUILD_FLAG} echo TARGET_OS: ${TARGET_OS} @@ -106,9 +107,15 @@ script = [ echo FEATURES: ${FEATURES} echo PRODUCT_EXT: ${PRODUCT_EXT} echo ${platforms} + + echo "-------- Flutter --------" + flutter doctor + + echo "-------- Rust --------" + rustup show ''' ] -script_runner = "@duckscript" +script_runner = "@shell" [env.production-ios] BUILD_FLAG = "release"