diff options
| author | 2017-10-21 18:42:44 +0200 | |
|---|---|---|
| committer | 2017-10-21 18:42:44 +0200 | |
| commit | 1224ae137b7e6cd4bfdb9e259ab6cbba11ba1b55 (patch) | |
| tree | 6ff2113e0203462a41d299dfe81d5c6685048f1b /cli/test_dice.sh | |
| parent | c3a7928a1ecac805224b77e664a47a3ed4f831af (diff) | |
| download | OneRoll-1224ae137b7e6cd4bfdb9e259ab6cbba11ba1b55.tar.gz OneRoll-1224ae137b7e6cd4bfdb9e259ab6cbba11ba1b55.zip | |
-improve the test script to get the under dev dice cli version.
Diffstat (limited to 'cli/test_dice.sh')
| -rwxr-xr-x | cli/test_dice.sh | 5 |
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 |