We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4262ee commit aa5beb4Copy full SHA for aa5beb4
builder/frameworks/espidf.py
@@ -84,10 +84,10 @@
84
PROJECT_DIR = env.subst("$PROJECT_DIR")
85
PROJECT_SRC_DIR = env.subst("$PROJECT_SRC_DIR")
86
CMAKE_API_REPLY_PATH = os.path.join(".cmake", "api", "v1", "reply")
87
-SDKCONFIG_PATH = board.get(
+SDKCONFIG_PATH = os.path.expandvars(board.get(
88
"build.esp-idf.sdkconfig_path",
89
os.path.join(PROJECT_DIR, "sdkconfig.%s" % env.subst("$PIOENV")),
90
-)
+))
91
92
93
def get_project_lib_includes(env):
0 commit comments