From 7427d4c1d30fbb6b5255f08a371db4e2f938a178 Mon Sep 17 00:00:00 2001 From: aldbr Date: Mon, 27 Nov 2023 14:49:00 +0100 Subject: [PATCH] fix: distinguish python from node modules --- run_demo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_demo.sh b/run_demo.sh index 9784f23..8ad4a83 100755 --- a/run_demo.sh +++ b/run_demo.sh @@ -219,7 +219,7 @@ for src_dir in "$@"; do fi # Python packages - if [ -d "${src_dir}/src" ]; then + if [ -f "${src_dir}/pyproject.toml" ]; then while IFS='' read -r pkg_dir; do pkg_name="$(basename "$(dirname "${pkg_dir}")")"