test/fuzz: avoid hard-coded path to btstack repo

This commit is contained in:
Matthias Ringwald 2020-07-25 17:49:16 +02:00
parent 7a4f4a6697
commit 852d5f72ca

View File

@ -1,8 +1,8 @@
#!/bin/sh
set -e
DIR=`dirname $0`
BTSTACK_ROOT="/Projects/btstack/"
LOCAL_DIR=`dirname $0`
BTSTACK_ROOT=`realpath $LOCAL_DIR/../..`
# build image if it doesn't exist
if [[ "$(docker images -q fuzz 2> /dev/null)" == "" ]]; then