Workflow execution completed unsuccessfully?

I have an error that I don’t know how to begin solving. I have a pipeline that works great from the command line, however, from the seqera platform I just get:

Workflow execution completed unsuccessfully
The workflow execution failed to start. Exit status: `1`

I looked in the log files:

nf-5dy2qC3Ho76Tj6.exit
nf-5dy2qC3Ho76Tj6.txt
nf-5dy2qC3Ho76Tj6.log

And they are all empty. How can I troubleshoot this? I am using my local HPC, and using tower as credential. Is there any debug flag that would provide a bit more information when this is ran?

In case this is helpful to anyone, this was actually due to incompatibility at the level of the OS, they recently updated the HPC’s OS to redhat9. It looks like seqera was having problems even though the error was not informative. We solved it by putting a backwards compatibility flag on the pre-run script:

export BASH_COMPAT=4.2

Solved!