Skip to content

Commit

Permalink
need to include init/ in tarballs
Browse files Browse the repository at this point in the history
  • Loading branch information
truib committed Apr 7, 2024
1 parent 31d79dd commit 70bc1ea
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions create_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ if [ -d ${eessi_version}/scripts ]; then
find ${eessi_version}/scripts -type f | grep -v '/\.wh\.' >> ${files_list}
fi

# also include init, which is also copied by install_scripts.sh
if [ -d ${eessi_version}/init ]; then
find ${eessi_version}/init -type f | grep -v '/\.wh\.' >> ${files_list}
fi

if [ -d ${eessi_version}/software/${os}/${cpu_arch_subdir}/modules ]; then
# module files
find ${eessi_version}/software/${os}/${cpu_arch_subdir}/modules -type f | grep -v '/\.wh\.' >> ${files_list}
Expand Down

0 comments on commit 70bc1ea

Please sign in to comment.