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