From 6bec593b9355606b24cea6390e93a879ea92e0a3 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 29 Jun 2022 22:17:30 +0300 Subject: [PATCH] Simplify output from the clean target --- platformio/builder/tools/piotarget.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/platformio/builder/tools/piotarget.py b/platformio/builder/tools/piotarget.py index 2dfdf3d8..4d7c3a74 100644 --- a/platformio/builder/tools/piotarget.py +++ b/platformio/builder/tools/piotarget.py @@ -43,9 +43,8 @@ def PioClean(env, clean_all=False): def _clean_dir(path): clean_rel_path = _relpath(path) - print(f"Removing `{clean_rel_path}` folder...", end="") + print(f"Removing {clean_rel_path}") fs.rmtree(path) - print(" done!") build_dir = env.subst("$BUILD_DIR") libdeps_dir = env.subst("$PROJECT_LIBDEPS_DIR")