Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add pip freeze step in run scripts
  • Loading branch information
MakisH committed Aug 29, 2025
commit c18fa5141bc1a673067d093687956706da3c2445
1 change: 1 addition & 0 deletions growing-mesh/A/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exec > >(tee --append "$LOGFILE") 2>&1
python3 -m venv .venv
. .venv/bin/activate
pip install ../solver-python
pip freeze ../solver-python/ > ../solver-python/pip-installed-packages.log

if [ $# -eq 0 ]; then
growing A
Expand Down
1 change: 1 addition & 0 deletions growing-mesh/B/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exec > >(tee --append "$LOGFILE") 2>&1
python3 -m venv .venv
. .venv/bin/activate
pip install ../solver-python
pip freeze ../solver-python/ > ../solver-python/pip-installed-packages.log

if [ $# -eq 0 ]; then
growing B
Expand Down
Loading