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
69
# 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
70
+
find ${eessi_version}/software/${os}/${subdir}/modules -type f \! -name '.wh.*'>>${files_list}
71
71
# 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
72
+
find ${eessi_version}/software/${os}/${subdir}/modules -type l \! -name '.wh.*'>>${files_list}
73
73
# module files and symlinks
74
-
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 \
0 commit comments