Skip to content

Commit 779b51c

Browse files
committed
Fix some text replacements
1 parent 114a811 commit 779b51c

File tree

4 files changed

+4
-8
lines changed
  • partitioned-heat-conduction-complex
  • partitioned-heat-conduction-overlap

4 files changed

+4
-8
lines changed

partitioned-heat-conduction-complex/dirichlet-fenics/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ set -e -u
44
. ../../tools/log.sh
55
exec > >(tee --append "$LOGFILE") 2>&1
66

7-
if [ $# -eq 0 ]
7+
if [ -z "${PRECICE_TUTORIALS_NO_VENV:-}" ]
88
then
9-
echo "Installing dependencies in a Python virtual environment"
109
python3 -m venv --system-site-packages .venv
1110
. .venv/bin/activate
1211
pip install -r ../solver-fenics/requirements.txt

partitioned-heat-conduction-complex/neumann-fenics/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ set -e -u
44
. ../../tools/log.sh
55
exec > >(tee --append "$LOGFILE") 2>&1
66

7-
if [ $# -eq 0 ]
7+
if [ -z "${PRECICE_TUTORIALS_NO_VENV:-}" ]
88
then
9-
echo "Installing dependencies in a Python virtual environment"
109
python3 -m venv --system-site-packages .venv
1110
. .venv/bin/activate
1211
pip install -r ../solver-fenics/requirements.txt

partitioned-heat-conduction-overlap/left-fenics/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ set -e -u
44
. ../../tools/log.sh
55
exec > >(tee --append "$LOGFILE") 2>&1
66

7-
if [ $# -eq 0 ]
7+
if [ -z "${PRECICE_TUTORIALS_NO_VENV:-}" ]
88
then
9-
echo "Installing dependencies in a Python virtual environment"
109
python3 -m venv --system-site-packages .venv
1110
. .venv/bin/activate
1211
pip install -r ../solver-fenics/requirements.txt

partitioned-heat-conduction-overlap/right-fenics/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ set -e -u
44
. ../../tools/log.sh
55
exec > >(tee --append "$LOGFILE") 2>&1
66

7-
if [ $# -eq 0 ]
7+
if [ -z "${PRECICE_TUTORIALS_NO_VENV:-}" ]
88
then
9-
echo "Installing dependencies in a Python virtual environment"
109
python3 -m venv --system-site-packages .venv
1110
. .venv/bin/activate
1211
pip install -r ../solver-fenics/requirements.txt

0 commit comments

Comments
 (0)