Skip to content

Commit

Permalink
Update espidf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Sep 29, 2024
1 parent 679f6a3 commit 634e0c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions builder/frameworks/espidf.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@
ORIG_BUILD_FLAGS = env.subst("$BUILD_FLAGS")
ORIG_BUILD_UNFLAGS = env.subst("$BUILD_UNFLAGS")
ORIG_PROJECT_SRC_DIR = PROJECT_SRC_DIR
env("$BUILD_FLAGS").clear()
env("$BUILD_UNFLAGS").clear()
["$BUILD_FLAGS"].clear()
["$BUILD_UNFLAGS"].clear()
PROJECT_SRC_DIR = PROJECT_SRC_DIR.replace("tasmota", "dummy")
env("$PROJECT_SRC_DIR").clear()
env("$PROJECT_SRC_DIR").append(PROJECT_SRC_DIR)
["$PROJECT_SRC_DIR"].clear()
["$PROJECT_SRC_DIR"].append(PROJECT_SRC_DIR)
except:
pass
print("Source Dir", PROJECT_SRC_DIR)
Expand Down

0 comments on commit 634e0c5

Please sign in to comment.