mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 07:29:33 +00:00
9 lines
254 B
Bash
Executable file
9 lines
254 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
restore_configs
|
|
|
|
eval "cp Marlin/src/config/examples/${1}/Configuration* Marlin/src/config/"
|
|
|
|
if [ -f "Marlin/src/config/examples/${1}/_Bootscreen.h" ]; then
|
|
cp "Marlin/src/config/examples/${1}/_Bootscreen.h" Marlin/src/config/
|
|
fi
|