mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 12:04:19 +00:00
8 lines
156 B
Bash
Executable File
8 lines
156 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
PINS="Marlin/src/pins"
|
|
RAMPS="$PINS/ramps/pins_RAMPS.h"
|
|
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
|
|
|
|
[[ -f $RAMPS ]] && cp "$RAMPS" "$BKUP"
|