mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 20:18:52 +00:00
12 lines
272 B
Bash
Executable File
12 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cp config/default/Configuration*.h Marlin
|
|
|
|
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 ; }
|
|
|
|
rm -f Marlin/_Bootscreen.h
|
|
rm -f Marlin/_Statusscreen.h
|