From 2e4eca63af76edf06f3b3a6b15c6c31008516849 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 10 Feb 2017 22:33:53 +0200 Subject: [PATCH] Wrap "gen_esp32part" command with verbose action and own label --- tools/platformio-build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/platformio-build.py b/tools/platformio-build.py index e1451d41a43..65a7966ded7 100644 --- a/tools/platformio-build.py +++ b/tools/platformio-build.py @@ -154,7 +154,7 @@ partition_table = env.Command( join("$BUILD_DIR", "partitions.bin"), join(FRAMEWORK_DIR, "tools", "partitions", "default.csv"), - '"$PYTHONEXE" "%s" -q $SOURCE $TARGET' % join( - FRAMEWORK_DIR, "tools", "gen_esp32part.py") -) + env.VerboseAction('"$PYTHONEXE" "%s" -q $SOURCE $TARGET' % + join(FRAMEWORK_DIR, "tools", "gen_esp32part.py"), + "Generating partitions $TARGET")) env.Depends("$BUILD_DIR/$PROGNAME$PROGSUFFIX", partition_table)