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 <<< "$@"
|
2022-06-03 23:50:20 -05:00
|
|
|
[ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="${PART2// /%20}" ; } \
|
|
|
|
|| { REPO=bugfix-2.1.x ; RDIR="${PART1// /%20}" ; }
|
2020-07-30 01:43:19 -05:00
|
|
|
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
|
2016-07-16 07:00:43 -05:00
|
|
|
|
2020-08-10 01:44:11 -05:00
|
|
|
which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot'
|
|
|
|
which wget >/dev/null && TOOL='wget -q -O wgot'
|
|
|
|
|
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-08-10 01:44:11 -05:00
|
|
|
$TOOL "$EXAMPLES/$RDIR/Configuration.h" >/dev/null 2>&1 && mv wgot Configuration.h
|
2020-08-10 20:03:13 -05:00
|
|
|
$TOOL "$EXAMPLES/$RDIR/Configuration_adv.h" >/dev/null 2>&1 && mv wgot Configuration_adv.h
|
|
|
|
$TOOL "$EXAMPLES/$RDIR/_Bootscreen.h" >/dev/null 2>&1 && mv wgot _Bootscreen.h
|
|
|
|
$TOOL "$EXAMPLES/$RDIR/_Statusscreen.h" >/dev/null 2>&1 && mv wgot _Statusscreen.h
|
2018-07-06 21:10:09 -05:00
|
|
|
|
2020-08-10 01:44:11 -05:00
|
|
|
rm -f wgot
|
2020-01-14 23:56:54 -06:00
|
|
|
cd - >/dev/null
|