that's what i get for not testing first

This commit is contained in:
Nicholas O'Connor
2017-07-11 16:24:50 -07:00
parent 678acdec90
commit 9bc9838ceb
3 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,9 @@ void cellar::bottles::create_bottle(int argc, vector<string> argv) {
output::statement("creating template bottle from scratch");
if (!dryrun) {
setenv("WINEPREFIX", fullbottlepath.c_str(), 1);
launch::popen("wineboot -u");
vector<string> wineboot;
wineboot.push_back("wineboot"); wineboot.push_back("-u");
launch::popen(wineboot);
}
}
}