aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cli
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2017-10-21 18:42:44 +0200
committerRenaud G <renaud@rolisteam.org>2017-10-21 18:42:44 +0200
commit1224ae137b7e6cd4bfdb9e259ab6cbba11ba1b55 (patch)
tree6ff2113e0203462a41d299dfe81d5c6685048f1b /cli
parentc3a7928a1ecac805224b77e664a47a3ed4f831af (diff)
downloadOneRoll-1224ae137b7e6cd4bfdb9e259ab6cbba11ba1b55.tar.gz
OneRoll-1224ae137b7e6cd4bfdb9e259ab6cbba11ba1b55.zip
-improve the test script to get the under dev dice cli version.
Diffstat (limited to 'cli')
-rwxr-xr-xcli/test_dice.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/test_dice.sh b/cli/test_dice.sh
index bd20b6a..78401ce 100755
--- a/cli/test_dice.sh
+++ b/cli/test_dice.sh
@@ -1,8 +1,11 @@
#!/bin/sh
+
+DICE="/home/renaud/application/mine/build-DiceParser-Qt5_7-debug-dice/cli/bin/dice"
+
export LD_LIBRARY_PATH="/home/renaud/application/other/Qt/5.7/gcc_64/lib:$LD_LIBRARY_PATH"
for line in `cat cmds.txt`
do
#echo $line;
- dice $line
+ $DICE $line
done