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
Currently implementation relies on process.env.SHELL env var.
It's usually provided, still there can be situation where we work in isolated environment (e.g. for test purposes) and such env var might not be exposed.
Issues I've observed, when no process.env.SHELL is provided:
All created scripts have no extension (they just end with a .)
uninstall of last registered command crashes, as it tries to read ~/.bashrc and such path needs to be resolved before passing to readFile. It happens because fallback in locationFromShell is not untildified
The text was updated successfully, but these errors were encountered:
Currently implementation relies on
process.env.SHELL
env var.It's usually provided, still there can be situation where we work in isolated environment (e.g. for test purposes) and such env var might not be exposed.
Issues I've observed, when no
process.env.SHELL
is provided:.
)uninstall
of last registered command crashes, as it tries to read~/.bashrc
and such path needs to be resolved before passing toreadFile
. It happens because fallback inlocationFromShell
is not untildifiedThe text was updated successfully, but these errors were encountered: