diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-08-05 16:23:58 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-08-05 16:23:58 +0200 |
commit | 7dcd8d8eb9140ae85dcc48de46d0bbb6e9e7dd16 (patch) | |
tree | 48160db44ee57283091767b3ea94b89da8ca0f74 /libk8055 | |
parent | 4944805e15b9de3fb22b63b5b5041f3ffdc8ab70 (diff) | |
download | k8055-7dcd8d8eb9140ae85dcc48de46d0bbb6e9e7dd16.zip k8055-7dcd8d8eb9140ae85dcc48de46d0bbb6e9e7dd16.tar.gz |
fix test script : bin is now k8055cmd
Diffstat (limited to 'libk8055')
-rwxr-xr-x | libk8055/test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libk8055/test b/libk8055/test index 355fd45..7406d81 100755 --- a/libk8055/test +++ b/libk8055/test @@ -1,8 +1,8 @@ #! /bin/bash if [ -x ./k8055 ]; then - K8055=./k8055 -elif [ -x ./build/libk8055/k8055 ]; then - K8055=./build/libk8055/k8055 + K8055=./k8055cmd +elif [ -x ./build/libk8055/k8055cmd ]; then + K8055=./build/libk8055/k8055cmd else echo "unable to find k8055 binary" && exit 1 fi |