From 7be1af42417258a9b219b1e92fb090fffb45bfbb Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 2 May 2018 12:37:51 +0300 Subject: [PATCH] Do not check if a custom SVD file exists --- platformio/builder/tools/pioide.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/builder/tools/pioide.py b/platformio/builder/tools/pioide.py index 75687360..89b49e3d 100644 --- a/platformio/builder/tools/pioide.py +++ b/platformio/builder/tools/pioide.py @@ -109,7 +109,7 @@ def _dump_defines(env): def _get_svd_path(env): svd_path = env.subst("$DEBUG_SVD_PATH") - if svd_path and isfile(svd_path): + if svd_path: return abspath(svd_path) if "BOARD" not in env: