Julien Capul
Julien Capul
Hi, I just got hit with the issue trying to run a "docker compose up" through poe on windows. It looks like from the `send_signal` implementation for windows that there're...
Actually, it might be better to send a CTRL_C_EVENT than a SIGTERM. So the code modification could look like this: ```python # signal pass through def handle_signal(signum, _frame): # sigint...
Hi Mat, Thanks for looking into pdwfs! I think I managed to reproduce your issue. Actually this is not an encoding issue, but it's definitely a bug. I assume that...
btw, you can easily check what calls are intercepted by pdwfs by running it with the `-t` (trace) option: `pdwfs -t -p $PWD/staged -- ./post-process`
yay! I'll check what's going on with `fscanf`, probably a similar story as `getline`.
> I'll check what's going on with `fscanf`, probably a similar story as `getline`. ok my bad, interception of `fscanf` was never implemented actually. I guess we never had to...
Thanks for the issue Mat! We are looking into how to implement the ferror behaviour to make this work.
I just merged PR #5 into develop which should fix this issue.