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
77
# 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
78
+
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
79
# 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
80
+
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
81
# module files and symlinks
74
82
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 \
83
+
| grep -v "${REMOVED_FILES_PATTERN}"| grep -v '/\.modulerc\.lua'| sed -e 's/.lua$//'| sed -e 's@.*/modules/all/@@g'| sort -u \
76
84
>>${module_files_list}
77
85
fi
78
86
@@ -86,7 +94,7 @@ for subdir in ${cpu_arch_subdir} ${cpu_arch_subdir}/accel/${accel_subdir}; do
0 commit comments