Hi I am trying to debug some custom pants plugin u...
# general
b
Hi I am trying to debug some custom pants plugin using Process. It just returned “no such file or directory”. How could I know what file or directory it is looking for?
1
w
For me, this tends to mean that the command I'm asking to run has a problem. One route I'd recommend is to add the
-ldebug
flag for verbose logging, and then you can inspect your sandbox with
--no-process-cleanup
From there, you can find the last sandbox, open it up, and even directly run the command it was trying with the
__run.sh
b
thanks. I got it to work with your approach
👍 1