-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terminal closes immediately after opening when bash
does not exist in PATH
#424
Comments
I've ran into this as well when trying out on different OS configurations, indeed the |
where is this called? |
|
Note also
Plus there are a ton of places where
(some like |
the |
I'm trying out the IDE, but I ran into a trouble with opening the terminal --- it immediately closes.
I've managed to spot an error message which sometimes flashes for just 1 frame: "No such file or directory". Following that rabbit hole, I ultimately found the problem to be the implicit assumption in various places in the code on
bash
existing (which does not exist by default in FreeBSD).I think two things would be useful here:
configs/*
; for example, I personally prefer mksh to bash.A potential hack is to use
ln -s /usr/local/bin/mksh ~/.local/bin/bash
, but that feels ... wrong.The text was updated successfully, but these errors were encountered: