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 634e0c5 commit ab1bfe4
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,14 +118,14 @@
ORIG_BUILD_FLAGS = env.subst("$BUILD_FLAGS")
ORIG_BUILD_UNFLAGS = env.subst("$BUILD_UNFLAGS")
ORIG_PROJECT_SRC_DIR = PROJECT_SRC_DIR
["$BUILD_FLAGS"].clear()
["$BUILD_UNFLAGS"].clear()
["$BUILD_FLAGS"] = []
["$BUILD_UNFLAGS"] = []
PROJECT_SRC_DIR = PROJECT_SRC_DIR.replace("tasmota", "dummy")
["$PROJECT_SRC_DIR"].clear()
["$PROJECT_SRC_DIR"] = []
["$PROJECT_SRC_DIR"].append(PROJECT_SRC_DIR)
except:
pass
print("Source Dir", PROJECT_SRC_DIR)
print("Source Dir", env.subst("$PROJECT_SRC_DIR"))
print("Build Flags", env.subst("$BUILD_FLAGS"))
print("Build UnFlags", env.subst("$BUILD_UNFLAGS"))

Expand Down

0 comments on commit ab1bfe4

Please sign in to comment.