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
can't create the ~/.config/firetools directory if ~/.configdoesn't exist. Apparently mkdir(...) doesn't directly support creating all the directories along the path (the way mkdir -p does).
This makes firetools fail to launch if ~/.configdoesn't exist.
Specifically, while this may be a rare occurrence in regular users' home directories, it can happen when launching firetools as root (having the home directory /root) where the home directory may not contain a .config subdirectory by default in some distributions.
The text was updated successfully, but these errors were encountered:
The code here:
firetools/src/common/utils.cpp
Lines 139 to 156 in 81ca775
can't create the
~/.config/firetools
directory if~/.config
doesn't exist. Apparentlymkdir(...)
doesn't directly support creating all the directories along the path (the waymkdir -p
does).This makes firetools fail to launch if
~/.config
doesn't exist.Specifically, while this may be a rare occurrence in regular users' home directories, it can happen when launching firetools as root (having the home directory
/root
) where the home directory may not contain a.config
subdirectory by default in some distributions.The text was updated successfully, but these errors were encountered: