Skip to content

Commit 549080f

Browse files
committed
include reprod dirs
1 parent a6b494c commit 549080f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

create_tarball.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,13 @@ for subdir in ${sw_subdirs}; do
9090
for package_version in $(cat ${module_files_list}); do
9191
echo "handling ${package_version}"
9292
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
9397
done
9498
fi
99+
95100
done
96101

97102
# add a bit debug output

0 commit comments

Comments
 (0)