From c4580839b50eab92efa8d9e87c986d4888d8b5ae Mon Sep 17 00:00:00 2001 From: tydeu Date: Sat, 25 Jun 2022 17:07:52 -0400 Subject: [PATCH] test: "fix" library loading issues --- examples/ffi/test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/ffi/test.sh b/examples/ffi/test.sh index cb48c98718..f499565428 100755 --- a/examples/ffi/test.sh +++ b/examples/ffi/test.sh @@ -5,4 +5,5 @@ set -e ./app/build/bin/app ./lib/build/bin/test -${LAKE:-../../build/bin/lake} -d app build Test +cd app # Library loading needs this; TODO: fix this +${LAKE:-../../../build/bin/lake} build Test