From 50a84fcd55672badfa8bd5d2ba763789fc1414c9 Mon Sep 17 00:00:00 2001 From: tydeu Date: Mon, 13 Dec 2021 20:27:35 -0500 Subject: [PATCH] test: add `print-paths` of dep modules check --- examples/deps/test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/deps/test.sh b/examples/deps/test.sh index 95bbde3c92..aae7f39d10 100755 --- a/examples/deps/test.sh +++ b/examples/deps/test.sh @@ -1,6 +1,10 @@ -set -e +set -ex ./clean.sh ./package.sh ./foo/build/bin/foo ./bar/build/bin/bar + +cd ./foo +${LAKE:-../../../build/bin/lake} print-paths A B +cd ..