From 7b7e71fdff5ffa33d92979de4350addbab2a0876 Mon Sep 17 00:00:00 2001 From: Nicole O'Connor Date: Tue, 3 Jun 2025 12:26:30 -0700 Subject: [PATCH] resolve_bottle: fix missing path separator in fallback to default path --- src/bottles/bottles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bottles/bottles.cpp b/src/bottles/bottles.cpp index af59655..b55ec7e 100644 --- a/src/bottles/bottles.cpp +++ b/src/bottles/bottles.cpp @@ -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;