I have a pipeline where I’m using a docker container. For some reason, my process seems to be unable to find my input files, passed in as paths. I want to see whether those files are accessible in the docker container correctly (these are external files that should be mounted). They appear to be in work/ folder for the process. I tried adding something in like
if ! [ -f $pipeline ]; then
echo " $pipeline File does not exist."
fi
if test -f $pipeline; then
echo "File exists."
fi
But when I look at .command.out, the file is blank, even though this is before the call to my program that is failing. Where would this echo print to?