aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cli
diff options
context:
space:
mode:
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