cleaning git

This commit is contained in:
Xavier Perignon
2020-06-15 14:24:57 +02:00
parent dcf352c27d
commit ba2f460a43
1542 changed files with 1832 additions and 2701 deletions

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
restore_configs
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/bugfix-2.0.x/config/examples"
cd Marlin
wget -q "$EXAMPLES/$@/Configuration.h" -O wgot && mv wgot Configuration.h
wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
wget -q "$EXAMPLES/$@/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
wget -q "$EXAMPLES/$@/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
rm -f wgot
cd - >/dev/null