-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Echo command fails during module installation #51
Comments
the problem is likely in |
Compared to the 3.0 planfile on master, only the bottom part concerning the
New:
|
Yes, this explains it. There are no
Line 250 in 8293ff5
The sed case only replaces specific variables, but is horrible to maintain. The ${module@P} is a feature of more recent shells, using all defined environment variables for replacement. (Thus trying to interpret the unescaped $INSTALLDIR )
|
I've removed the 'bug' label, since the bug is in the provided module file (not in the repository). Improving the error message would be a very useful contribution, however, and is a nicely separated issue to learn much about shell error handling. |
Issue
In
build_functions.sh
, in the functionmodule_install
, executing line 251raises the following error for me on JURECA-DC:
Workaround:
Skipping the
if
-case by deleting lines 250 – 253, removing one level of indent from lines 254 – 280, deleting line 281.The text was updated successfully, but these errors were encountered: