I was trying out the environment features of hatch. In doing so, I created environments linked to a bunch of scratch directories. To tidy up, I ran hatch env prune, which according to the help, "Removes all environments". However, although the environments are removed, there's still a directory $env:LOCALAPPDATA\hatch\env\virtual\ppp left (for the project directory ppp). I would have expected hatch env prune to remove all trace of the project directory from the virtual environment shared area, but that doesn't seem to be the case.
If hatch env prune doesn't remove that top-level directory by design, how do I remove it? More generally, what's the command I should use to get hatch to completely forget about a project, so that I can safely delete the project without leaving any linked information lying around (now orphaned)?
I was trying out the environment features of hatch. In doing so, I created environments linked to a bunch of scratch directories. To tidy up, I ran
hatch env prune, which according to the help, "Removes all environments". However, although the environments are removed, there's still a directory$env:LOCALAPPDATA\hatch\env\virtual\pppleft (for the project directoryppp). I would have expectedhatch env pruneto remove all trace of the project directory from the virtual environment shared area, but that doesn't seem to be the case.If
hatch env prunedoesn't remove that top-level directory by design, how do I remove it? More generally, what's the command I should use to get hatch to completely forget about a project, so that I can safely delete the project without leaving any linked information lying around (now orphaned)?