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
When executing this job, reana-job-controller will create the following job_singularity_wrapper.sh wrapper to run the user-provided commands on HTCondor:
However, if we execute this script manually on lxplus, this is the output:
$ bash job_singularity_wrapper.sh bash: line 1: python: command not found
The | base64 -d | bash part of the script is not executed in the singularity container, but in the outer bash shell, thus the user-provided commands are not executed in the singularity container.
The text was updated successfully, but these errors were encountered:
Consider the following changes to reana-demo-helloworld:
When executing this job, reana-job-controller will create the following
job_singularity_wrapper.sh
wrapper to run the user-provided commands on HTCondor:Note that:
However, if we execute this script manually on lxplus, this is the output:
The
| base64 -d | bash
part of the script is not executed in the singularity container, but in the outer bash shell, thus the user-provided commands are not executed in the singularity container.The text was updated successfully, but these errors were encountered: