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
When sh is provided by busybox and the user shell is sh fastfetch hangs ~1 second when determining the shell. The reason is that sh is assumed to be bash (why?) and then tries to execute sh --version. busybox ignores the option and opens an interactive shell. Then after the timeout it is killed.
When encountering sh as execName it would make more sense to look at the last segment of exePath to use the correct version check.
The text was updated successfully, but these errors were encountered:
When
sh
is provided by busybox and the user shell issh
fastfetch hangs ~1 second when determining the shell. The reason is thatsh
is assumed to be bash (why?) and then tries to executesh --version
. busybox ignores the option and opens an interactive shell. Then after the timeout it is killed.When encountering
sh
asexecName
it would make more sense to look at the last segment ofexePath
to use the correct version check.The text was updated successfully, but these errors were encountered: