Marlin_Firmware/buildroot/bin/use_example_configs

22 lines
804 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
IFS=: read -r PART1 PART2 <<< "$@"
2020-08-10 01:44:11 -05:00
[ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="${PART2// /%20}" ; } \
|| { REPO=bugfix-2.0.x ; RDIR="${PART1// /%20}" ; }
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
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'
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
$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
2020-08-10 01:44:11 -05:00
rm -f wgot
2020-01-14 23:56:54 -06:00
cd - >/dev/null