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