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