2016-03-22 09:13:38 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-09-06 06:28:32 -05:00
|
|
|
restore_configs
|
2016-07-16 07:00:43 -05:00
|
|
|
|
2017-12-16 17:29:35 -06:00
|
|
|
cp Marlin/src/config/examples/"$@"/Configuration* Marlin/
|
2017-09-06 06:28:32 -05:00
|
|
|
|
2017-12-16 17:29:35 -06:00
|
|
|
if [ -f "Marlin/src/config/examples/$@/_Bootscreen.h" ]; then
|
2018-07-06 21:10:09 -05:00
|
|
|
cp "Marlin/src/config/examples/$@/_Bootscreen.h" Marlin/
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "Marlin/src/config/examples/$@/_Statusscreen.h" ]; then
|
|
|
|
cp "Marlin/src/config/examples/$@/_Statusscreen.h" Marlin/
|
2016-07-16 07:00:43 -05:00
|
|
|
fi
|