From 2e1217adf3426da635086269874492cca965a647 Mon Sep 17 00:00:00 2001 From: Nicholas O'Connor Date: Wed, 15 May 2019 18:02:19 -0700 Subject: [PATCH] fix active_bottle being set to a bogus bottle location --- src/core/cellar.cpp.cog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/cellar.cpp.cog b/src/core/cellar.cpp.cog index fe3ffbb..85a9c00 100644 --- a/src/core/cellar.cpp.cog +++ b/src/core/cellar.cpp.cog @@ -93,7 +93,7 @@ int main(int argc, char* argv[]) { bottles::active_bottle = bottles::Bottle(env_wineprefix); } else { string homepath = getenv("HOME"); - string fullbottlepath = homepath + "/.local/share/cellar/bottles/" + bottlearg.getValue(); + string fullbottlepath = homepath + "/.wine"; bottles::active_bottle = bottles::Bottle(fullbottlepath); }