Replies: 1 comment 4 replies
-
One possible solution is to move the |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use
just
occasionally to launch long-running (days/weeks+) processes. I also keepjust
updated pretty regularly, but run into issues if one of these long running processes is alive (can't overwrite the binary during update). A nice feature to work around this kind of thing would be some kind of syntax that would causejust
toexec
(in the syscall sense) the appropriate interpreter.I'm not entirely sure what process creation in Rust looks like for Windows, so it may just not be viable from the start for that reason. I think it would also impose limitations on dependencies (can't really
exec
a recipe dependency and then return to run the dependent recipe) so maybe it would only make sense as a command line option that applies to the root recipe(s) in a given invocation ofjust
.I'd love to hear anyone's thoughts on this: value, feasibility, whatever. :-)
Beta Was this translation helpful? Give feedback.
All reactions