clean marlin 2.0.x-bugfix

This commit is contained in:
Bob E Moe
2020-01-11 17:08:20 +00:00
commit c0ed3ec64a
1844 changed files with 2037470 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
restore_configs
if [ -f "config/examples/$@/Configuration.h" ]; then
cp "config/examples/$@/Configuration.h" Marlin/
fi
if [ -f "config/examples/$@/Configuration_adv.h" ]; then
cp "config/examples/$@/Configuration_adv.h" Marlin/
fi
if [ -f "config/examples/$@/_Bootscreen.h" ]; then
cp "config/examples/$@/_Bootscreen.h" Marlin/
fi
if [ -f "config/examples/$@/_Statusscreen.h" ]; then
cp "config/examples/$@/_Statusscreen.h" Marlin/
fi