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 494b6c0 commit 6422039Copy full SHA for 6422039
builder/frameworks/esp8266-rtos-sdk.py
@@ -71,6 +71,7 @@
71
if not os.path.isfile(SDKCONFIG_PATH):
72
SDKCONFIG_PATH = os.path.join(PROJECT_DIR, "sdkconfig")
73
74
+# replace paths for windows
75
SDKCONFIG_PATH = SDKCONFIG_PATH.replace("\\","/")
76
77
def set_elftobin():
@@ -662,9 +663,6 @@ def run_tool(cmd):
662
663
idf_env = os.environ.copy()
664
populate_idf_env_vars(idf_env)
665
- print(idf_env)
666
- print("run_tool:",cmd)
667
-
668
result = exec_command(cmd, env=idf_env)
669
if result["returncode"] != 0:
670
sys.stderr.write(result["out"] + "\n")
0 commit comments