Skip to content

Commit d2f1444

Browse files
committed
fix: bug as foam-extend bashrc modifies shell arguments
1 parent 0215ba5 commit d2f1444

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

basic/foam-extend.def

+9-5
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,31 @@ From: containers/basic/{{ BASE_CONTAINER }}.sif
3131
git clone --single-branch --branch {{ FRAMEWORK_GIT_REF }} --depth 1 \
3232
git://git.code.sf.net/p/foam-extend/foam-extend-{{ FRAMEWORK_VERSION }} \
3333
/opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}
34-
sed -i 's|^foamInstall.*|foamInstall=/opt/foam|' /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc
34+
export FOAM_BASHRC="/opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc"
35+
sed -i '/_foamSource.*aliases.sh/d' $FOAM_BASHRC
36+
sed -i '/while \[ \$# -gt 0 \]/,/^done$/d' $FOAM_BASHRC
37+
sed -i 's|^foamInstall.*|foamInstall=/opt/foam|' $FOAM_BASHRC
3538
nProcs=$(nproc)
3639
/bin/bash -c "cd /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }} && source etc/bashrc && ./Allwmake.firstInstall -j $nProcs"
3740
rm -rf /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/tutorials/*
3841
FRAMEWORK_COMMIT_HASH=$(git -C /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }} rev-parse HEAD)
3942
jq --arg app openfoam --arg commit $FRAMEWORK_COMMIT_HASH \
4043
--arg branch {{ FRAMEWORK_GIT_REF }} \
44+
--arg source_script $FOAM_BASHRC \
4145
'.[$app] |= if . == null then
4246
{
4347
fork: "foam-extend",
4448
branch: $branch,
4549
commit: $commit,
46-
source_script: "/opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc",
50+
source_script: $source_script,
4751
version: "{{ FRAMEWORK_VERSION }}"
4852
}
4953
else . +
5054
{
5155
fork: "foam-extend",
5256
branch: $branch,
5357
commit: $commit,
54-
source_script: "/opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc",
58+
source_script: $source_script,
5559
version: "{{ FRAMEWORK_VERSION }}"
5660
} end' /apps.json > /tmp/apps.json
5761
mv /tmp/apps.json /apps.json
@@ -60,12 +64,12 @@ From: containers/basic/{{ BASE_CONTAINER }}.sif
6064
#!/bin/bash
6165
jq -r '.. | .source_script? // empty' /apps.json | while read -r script; do
6266
if [[ -f "$script" ]]; then
63-
source "$script"
67+
(source "$script")
6468
fi
6569
done
6670
jq -r '.. | .python_env? // empty' /apps.json | while read -r script; do
6771
if [[ -f "$script" ]]; then
68-
source "$script/bin/activate"
72+
source "$script/bin/activate"
6973
fi
7074
done
7175

0 commit comments

Comments
 (0)