2016-03-22 09:13:38 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-03-03 16:50:56 -06:00
|
|
|
cp config/default/Configuration*.h Marlin
|
2016-07-16 07:00:43 -05:00
|
|
|
|
2019-07-11 02:32:24 -05:00
|
|
|
PINS="Marlin/src/pins"
|
|
|
|
RAMPS="$PINS/ramps/pins_RAMPS.h"
|
|
|
|
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
|
|
|
|
[ -f $BKUP ] && { cp "$BKUP" "$RAMPS" ; rm -f $BKUP ; }
|
2018-07-13 23:42:15 -05:00
|
|
|
|
2018-09-02 03:27:39 -05:00
|
|
|
rm -f Marlin/_Bootscreen.h
|
|
|
|
rm -f Marlin/_Statusscreen.h
|