To facilitate deployment among other machines and upload from there directly

This commit is contained in:
John Poole 2026-06-02 11:42:11 -07:00
commit 237ccf5103

View file

@ -0,0 +1,18 @@
#!/bin/bash
# $Header$
# $HeadURL$
set -e
EXERCISE="/usr/local/src/microreticulum/microReticulumTbeam/exercises/204_established_identities"
for env in amy bob cy dan ed flo guy
do
ENV="$(echo "$env" | tr '[:lower:]' '[:upper:]')"
echo "===== copy artifact $env from ryzdesk ====="
rsync -a \
"ryzdesk:${EXERCISE}/.pio/build/${env}/" \
"${EXERCISE}/.pio/build/${env}/"
done