13 lines
329 B
Bash
Executable File
13 lines
329 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
dest_path=${0%/*}/lib
|
|
source_host=${1:-raspberrypi.local}
|
|
|
|
|
|
scp \
|
|
raspberrypi.local:RpiLedBars/backend/.build/src/drivers/libRpiLedBars_drivers.a \
|
|
${dest_path}/bin/libRpiLedBars_drivers_8ch.a
|
|
|
|
scp \
|
|
raspberrypi.local:RpiLedBars/backend/.build/_deps/logc-build/liblogc.a \
|
|
${dest_path}/bin/liblogc.a |