Skip to content

Commit

Permalink
✅ Fix 'mfconfig manual'
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Sep 26, 2024
1 parent 17c4846 commit a466d5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/mfconfig
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ elif ACTION == "manual":
checkout(IMPORT)

# Replace examples/default with our local copies
shutil.copy(MARLINREPO / "Marlin" / "Configuration*.h", CONFIGDEF)
for fn in MARLINREPO.glob("Marlin/**/Configuration*.h"):
shutil.copy(fn, CONFIGDEF)

#git add . && git commit -m "Changes from Marlin ($(date '+%Y-%m-%d %H:%M'))."
#commit(f"Changes from Marlin ({datetime.datetime.now()}).")
Expand Down

0 comments on commit a466d5d

Please sign in to comment.