Browse Source

Fix use_example_configs to handle spaces in path

pull/1/head
Scott Lahteine 7 years ago
parent
commit
2690ce7a96
  1. 6
      buildroot/bin/use_example_configs

6
buildroot/bin/use_example_configs

@ -2,8 +2,8 @@
restore_configs
eval "cp Marlin/src/config/examples/${1}/Configuration* Marlin/"
cp Marlin/src/config/examples/"$@"/Configuration* Marlin/
if [ -f "Marlin/src/config/examples/${1}/_Bootscreen.h" ]; then
cp "Marlin/src/config/examples/${1}/_Bootscreen.h" Marlin/src/config/
if [ -f "Marlin/src/config/examples/$@/_Bootscreen.h" ]; then
cp "Marlin/src/config/examples/$@/_Bootscreen.h" Marlin/src/config/
fi

Loading…
Cancel
Save