We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6b494c commit 549080fCopy full SHA for 549080f
1 file changed
create_tarball.sh
@@ -90,8 +90,13 @@ for subdir in ${sw_subdirs}; do
90
for package_version in $(cat ${module_files_list}); do
91
echo "handling ${package_version}"
92
find ${eessi_version}/software/${os}/${subdir}/software/${package_version} -maxdepth 0 -type d \! -name '.wh.*' >> ${files_list}
93
+ # if there is a directory for this installation in the stack's reprod directory, include that too
94
+ if [ -d ${eessi_version}/software/${os}/${subdir}/reprod ]; then
95
+ find ${eessi_version}/software/${os}/${subdir}/reprod/${package_version} -maxdepth 0 -type d \! -name '.wh.*' >> ${files_list}
96
+ fi
97
done
98
fi
99
+
100
101
102
# add a bit debug output
0 commit comments