b143441251
Also fix use_example_configs
14 lines
350 B
Bash
Executable file
14 lines
350 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
restore_configs
|
|
|
|
cp Marlin/src/config/examples/"$@"/Configuration* Marlin/
|
|
|
|
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
|