2016-03-22 09:13:38 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-07-30 01:43:19 -05:00
|
|
|
IFS=: read -r PART1 PART2 <<< "$@"
|
|
|
|
[ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="$PART2" ; } \
|
|
|
|
|| { REPO=bugfix-2.0.x ; RDIR="$PART1" ; }
|
|
|
|
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
|
2016-07-16 07:00:43 -05:00
|
|
|
|
2020-07-30 01:43:19 -05:00
|
|
|
restore_configs
|
2018-10-12 21:15:54 -05:00
|
|
|
|
2020-01-14 23:56:54 -06:00
|
|
|
cd Marlin
|
2017-09-06 06:28:32 -05:00
|
|
|
|
2020-07-30 01:43:19 -05:00
|
|
|
wget -q "$EXAMPLES/$RDIR/Configuration.h" -O wgot && mv wgot Configuration.h
|
|
|
|
wget -q "$EXAMPLES/$RDIR/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
|
|
|
|
wget -q "$EXAMPLES/$RDIR/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
|
|
|
|
wget -q "$EXAMPLES/$RDIR/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
|
2020-01-14 23:56:54 -06:00
|
|
|
rm -f wgot
|
2018-07-06 21:10:09 -05:00
|
|
|
|
2020-01-14 23:56:54 -06:00
|
|
|
cd - >/dev/null
|