Skip to content

Commit

Permalink
Merge pull request #71 from aldbr/main_FIX_get-node-packages
Browse files Browse the repository at this point in the history
fix: distinguish python from node modules
  • Loading branch information
chrisburr authored Nov 28, 2023
2 parents e479ca1 + 7427d4c commit 4488d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}")")"

Expand Down

0 comments on commit 4488d5d

Please sign in to comment.