mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 20:18:52 +00:00
20 lines
557 B
Bash
Executable File
20 lines
557 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
restore_configs
|
|
|
|
if [ -f "Marlin/src/config/examples/$@/Configuration.h" ]; then
|
|
cp "Marlin/src/config/examples/$@/Configuration.h" Marlin/
|
|
fi
|
|
|
|
if [ -f "Marlin/src/config/examples/$@/Configuration_adv.h" ]; then
|
|
cp "Marlin/src/config/examples/$@/Configuration_adv.h" Marlin/
|
|
fi
|
|
|
|
if [ -f "Marlin/src/config/examples/$@/_Bootscreen.h" ]; then
|
|
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/
|
|
fi
|