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