Mercurial > public > ssdt-docker
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scripts/send.sh Thu Sep 22 01:49:20 2016 +0100 @@ -0,0 +1,10 @@ +#!/bin/bash +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)"} +if [ "$file" != "-" ] +then + file="/tmp/${file}" +fi +name=${2:-$(basename $PWD)} +source=$(hostname) +docker run -i -v /ssdt:/ssdt -v ${PWD}:/tmp --rm docker.ssdt.io/ssdt-utils \ + curl -F source=$source -F name=$name -F file=@$file https://upload.ssdt.io/upload \ No newline at end of file