1
0
mirror of https://github.com/bluekitchen/btstack.git synced 2025-02-17 09:40:45 +00:00
btstack/port/arduino/upload_latest_sftp.sh

20 lines
404 B
Bash
Executable File

#!/bin/bash
USAGE="Usage: upload_latest_sftp.sh host path user"
# command line checks, bash
if [ $# -ne 3 ]; then
echo ${USAGE}
exit 0
fi
host=$1
path=$2
user=$3
echo Uploading generated archive to ${host}/${path} with user ${user}
# SFTP is very peculiar: recursive put only works for a single directory
sftp ${user}@${host} << EOF
put btstack-arduino-latest.zip ${path}
quit
EOF