This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/bin/restore_configs
2020-01-15 01:27:32 -06:00

18 lines
433 B
Bash
Executable file

#!/usr/bin/env bash
RESTORE="https://raw.githubusercontent.com/MarlinFirmware/Configurations/master/config/default"
cd Marlin
rm -f Conf*.h _*screen.h
PINS="src/pins"
RAMPS="$PINS/ramps/pins_RAMPS.h"
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
[ -f $BKUP ] && { cp "$BKUP" "$RAMPS" ; rm -f $BKUP ; }
wget -q "$RESTORE/Configuration.h" -O Configuration.h
wget -q "$RESTORE/Configuration_adv.h" -O Configuration_adv.h
cd - >/dev/null