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)