2016-03-22 14:13:38 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2019-03-03 22:50:56 +00:00
|
|
|
cp config/default/Configuration*.h Marlin
|
2016-07-16 12:00:43 +00:00
|
|
|
|
2019-07-11 07:32:24 +00: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-14 04:42:15 +00:00
|
|
|
|
2018-09-02 08:27:39 +00:00
|
|
|
rm -f Marlin/_Bootscreen.h
|
|
|
|
rm -f Marlin/_Statusscreen.h
|