You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function f --on-eventfish_prompt
source (echo"echo hello world"|psub)
end
causes psub to not clean up after itself - the "on-job-exit caller" event is never run. This causes issues with pyenv, because that still uses source (thing | psub) internally, and so it will lead to a lot of files in $TMPDIR.
This is caused by f7e2e7d forbidding job handlers inside event handlers from running. I'm going to soften it to still allow caller-exit handlers.
The text was updated successfully, but these errors were encountered:
faho
added
the
regression
Something that used to work, but was broken, especially between releases
label
Mar 7, 2021
As reported by @marcusatiliusregulus on gitter:
causes psub to not clean up after itself - the "on-job-exit caller" event is never run. This causes issues with pyenv, because that still uses
source (thing | psub)
internally, and so it will lead to a lot of files in $TMPDIR.This is caused by f7e2e7d forbidding job handlers inside event handlers from running. I'm going to soften it to still allow caller-exit handlers.
The text was updated successfully, but these errors were encountered: