diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-12 11:29:30 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-12 11:29:30 +0200 |
commit | 2f864ac5289e8426f1d0c91c264a6a274047245b (patch) | |
tree | 4f93d63178bacfbd9e1c28bb9c072ac630e9c206 | |
parent | b1a7670336d3d5f6f70285e766475a3415c13d12 (diff) |
scripts: wm-request uses afb-client-demo
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rwxr-xr-x | scripts/wm-request | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/scripts/wm-request b/scripts/wm-request index c98e748..c8ab188 100755 --- a/scripts/wm-request +++ b/scripts/wm-request @@ -13,7 +13,7 @@ then exit 1 fi -for i in uuidgen curl +for i in uuidgen afb-client-demo do which $i 2>/dev/null 1>&2 || { echo "Program $i is missing" >&2; exit 1; } done @@ -41,17 +41,6 @@ fi verb=$1 shift -args="" -for i in "$@" -do - args="$i" -done - -if [ "$args" ] -then - args="?$args" -fi - UUIDFILE=/tmp/wm-request-uuid if ! [ -f $UUIDFILE ] then @@ -59,6 +48,13 @@ then fi UUID="`cat $UUIDFILE`" -curl -H "x-afb-uuid: $UUID" -s http://localhost:1234/api/winman/${verb}${args} | json_pretty +args= +if [ "$1" ] +then + args='{"drawing_name":"'"$1"'"}' + shift +fi + +afb-client-demo -H ws://localhost:1700/api\?token=wm\&uuid=$UUID winman $verb $args # vim:set ft=sh: |