Skip to content
Snippets Groups Projects
Commit ac48b838 authored by Jono Wenger's avatar Jono Wenger
Browse files

Merge branch 'jono/rmResults' into 'release'

Remove results if it cannot be renamed

See merge request elixxir/integration!108
parents cb2e5d82 8cf1cd96
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
set -e
rm -fr results.bak || true
mv results results.bak || true
mv results results.bak || rm -fr results || true
rm -fr blob* || true
rm *-contact.json || true
rm server-5.qdstrm || true
......@@ -370,7 +370,7 @@ wait $PIDVAL2
echo "TESTING SINGLE-USE"
# Generate contact file for client52
CLIENTCMD="../bin/client init -s blob52 -l results/client52.log --password hello --ndf ndf.json --writeContact $CLIENTOUT/jono52-contact.bin"
CLIENTCMD="../bin/client init -s blob52 -l $CLIENTOUT/client52.log --password hello --ndf ndf.json --writeContact $CLIENTOUT/jono52-contact.bin"
eval $CLIENTCMD >> /dev/null 2>&1 || true &
PIDVAL=$!
echo "$CLIENTCMD -- $PIDVAL"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment