cellar launch now reads and respects wine-path setting (fixes #23)

This commit is contained in:
Nicholas O'Connor
2017-06-09 12:16:59 -07:00
parent 58c96411a0
commit d789416c5f
2 changed files with 7 additions and 3 deletions

View File

@@ -57,8 +57,7 @@ void cellar::config::config_command(int argc, vector<string> argv) {
return;
}
string key = argv[2];
string newvalue = argv[3];
string newvalue = value;
string oldvalue = active_bottle.get_config(key);
if (active_bottle.set_config(key, newvalue)) {