resolve_bottle: fix missing path separator in fallback to default path
This commit is contained in:
parent
19a0e40977
commit
7b7e71fdff
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user