annotate scripts/send.sh @ 90:63cb9be89a26 production v1.0.0

flow: Merged <release> 'v1.0.0' to <master> ('production').
author smith@nwoca.org
date Thu, 22 Sep 2016 01:49:20 +0100
parents f04f13a1d5d8
children 8f45c43ea7a4
rev   line source
63
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
1 #!/bin/bash
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
2 file=${1?"Usage: $0 filename [name]\n specify the filename relative to the current directory or - for stdin.\noptionally specify a short name (default to base directory)"}
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
3 if [ "$file" != "-" ]
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
4 then
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
5 file="/tmp/${file}"
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
6 fi
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
7 name=${2:-$(basename $PWD)}
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
8 source=$(hostname)
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
9 docker run -i -v /ssdt:/ssdt -v ${PWD}:/tmp --rm docker.ssdt.io/ssdt-utils \
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
10 curl -F source=$source -F name=$name -F file=@$file https://upload.ssdt.io/upload