You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ -d${eessi_version}/software/${os}/${cpu_arch_subdir}/.lmod ];then
50
50
# include Lmod cache and configuration file (lmodrc.lua),
51
51
# skip whiteout files and backup copies of Lmod cache (spiderT.old.*)
52
-
find ${eessi_version}/software/${os}/${cpu_arch_subdir}/.lmod -type f | egrep -v '/\.wh\.|spiderT.old'>>${files_list}
52
+
find ${eessi_version}/software/${os}/${cpu_arch_subdir}/.lmod -type f | egrep -v '/\.wh\.|spiderT.old'>>${files_list}||true# Make sure we don't exit because of set -e if grep doesn't return a match
53
53
fi
54
54
55
55
# include scripts that were copied by install_scripts.sh, which we want to ship in EESSI repository
56
56
if [ -d${eessi_version}/scripts ];then
57
-
find ${eessi_version}/scripts -type f | grep -v '/\.wh\.'>>${files_list}
57
+
find ${eessi_version}/scripts -type f | grep -v '/\.wh\.'>>${files_list}||true# Make sure we don't exit because of set -e if grep doesn't return a match
58
58
fi
59
59
60
60
# also include init, which is also copied by install_scripts.sh
61
61
if [ -d${eessi_version}/init ];then
62
-
find ${eessi_version}/init -type f | grep -v '/\.wh\.'>>${files_list}
62
+
find ${eessi_version}/init -type f | grep -v '/\.wh\.'>>${files_list}||true# Make sure we don't exit because of set -e if grep doesn't return a match
63
63
fi
64
64
65
65
# consider both CPU-only and accelerator subdirectories
0 commit comments