Do not check if a custom SVD file exists

This commit is contained in:
Ivan Kravets
2018-05-02 12:37:51 +03:00
parent d0bc40bc24
commit 7be1af4241

View File

@ -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: