Get test configs from GitHub
parent
b419ca254b
commit
bd550bb45a
@ -1,11 +1,17 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
cp config/default/Configuration*.h Marlin
|
RESTORE="https://raw.githubusercontent.com/MarlinFirmware/Configurations/master/config/default"
|
||||||
|
|
||||||
PINS="Marlin/src/pins"
|
cd Marlin
|
||||||
|
|
||||||
|
rm -f Conf*.h _*screen.h
|
||||||
|
|
||||||
|
PINS="src/pins"
|
||||||
RAMPS="$PINS/ramps/pins_RAMPS.h"
|
RAMPS="$PINS/ramps/pins_RAMPS.h"
|
||||||
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
|
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
|
||||||
[ -f $BKUP ] && { cp "$BKUP" "$RAMPS" ; rm -f $BKUP ; }
|
[ -f $BKUP ] && { cp "$BKUP" "$RAMPS" ; rm -f $BKUP ; }
|
||||||
|
|
||||||
rm -f Marlin/_Bootscreen.h
|
wget -q "$RESTORE/Configuration.h" -O Configuration.h
|
||||||
rm -f Marlin/_Statusscreen.h
|
wget -q "$RESTORE/Configuration_adv.h" -O Configuration_adv.h
|
||||||
|
|
||||||
|
cd - >/dev/null
|
||||||
|
Loading…
Reference in New Issue