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}/${subdir}/modules ];then
69
73
# module files
70
-
find ${eessi_version}/software/${os}/${subdir}/modules -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
74
+
find ${eessi_version}/software/${os}/${subdir}/modules -type f | grep -v "${REMOVED_FILES_PATTERN}">>${files_list}||true# Make sure we don't exit because of set -e if grep doesn't return a match
71
75
# module symlinks
72
-
find ${eessi_version}/software/${os}/${subdir}/modules -type l | grep -v '/\.wh\.'>>${files_list}||true# Make sure we don't exit because of set -e if grep doesn't return a match
76
+
find ${eessi_version}/software/${os}/${subdir}/modules -type l | grep -v "${REMOVED_FILES_PATTERN}">>${files_list}||true# Make sure we don't exit because of set -e if grep doesn't return a match
73
77
# module files and symlinks
74
78
find ${eessi_version}/software/${os}/${subdir}/modules/all -type f -o -type l \
75
-
| grep -v '/\.wh\.'| grep -v '/\.modulerc\.lua'| sed -e 's/.lua$//'| sed -e 's@.*/modules/all/@@g'| sort -u \
79
+
| grep -v "${REMOVED_FILES_PATTERN}"| grep -v '/\.modulerc\.lua'| sed -e 's/.lua$//'| sed -e 's@.*/modules/all/@@g'| sort -u \
76
80
>>${module_files_list}
77
81
fi
78
82
@@ -86,7 +90,7 @@ for subdir in ${cpu_arch_subdir} ${cpu_arch_subdir}/accel/${accel_subdir}; do
0 commit comments