Skip to content

Commit

Permalink
merged in master
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 11, 2023
2 parents 4991338 + beb05b6 commit c517e06
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions actions/install-spinn-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ runs:
pip install ./$repo
echo "::endgroup::"
else
echo "::group::Setting up $repo"
(cd $repo && exec python setup.py develop)
echo "::endgroup::"
if [ -f "$repo/setup.py" ]; then
echo "::group::Setting up $repo"
(cd $repo && exec python setup.py develop)
echo "::endgroup::"
fi
fi
done
fi
Expand Down

0 comments on commit c517e06

Please sign in to comment.