fix -b argument not using new bottle path

This commit is contained in:
Nicholas O'Connor 2018-03-13 20:59:32 -07:00
parent 6869be4301
commit b226a7eef5

View File

@ -93,7 +93,7 @@ int main(int argc, char* argv[]) {
bottles::active_bottle = bottles::Bottle(env_wineprefix); bottles::active_bottle = bottles::Bottle(env_wineprefix);
} else { } else {
string homepath = getenv("HOME"); string homepath = getenv("HOME");
string fullbottlepath = homepath + "/.wine"; string fullbottlepath = homepath + "/.local/share/cellar/bottles/" + bottlearg.getValue();
bottles::active_bottle = bottles::Bottle(fullbottlepath); bottles::active_bottle = bottles::Bottle(fullbottlepath);
} }