resolve_bottle: fix missing path separator in fallback to default path

This commit is contained in:
Nicole O'Connor 2025-06-03 12:26:30 -07:00
parent 19a0e40977
commit 7b7e71fdff

View File

@ -166,7 +166,7 @@ string cellar::bottles::resolve_bottle(string bottlechoice) {
#endif
} else {
string homepath = getenv("HOME");
string fullbottlepath = homepath + "/.local/share/cellar/bottles" + bottlechoice;
string fullbottlepath = homepath + "/.local/share/cellar/bottles/" + bottlechoice;
result = fullbottlepath;
}
return result;