This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/bin/use_example_configs

16 lines
496 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2017-09-06 13:28:32 +02:00
restore_configs
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/bugfix-2.0.x/config/examples"
2018-10-13 04:15:54 +02:00
2020-01-15 06:56:54 +01:00
cd Marlin
2017-09-06 13:28:32 +02:00
2020-01-15 06:56:54 +01:00
wget -q "$EXAMPLES/$@/Configuration.h" -O wgot && mv wgot Configuration.h
wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
wget -q "$EXAMPLES/$@/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
wget -q "$EXAMPLES/$@/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
rm -f wgot
2020-01-15 06:56:54 +01:00
cd - >/dev/null