manual merge after rebase

This commit is contained in:
isanae
2020-11-09 03:30:47 -05:00
parent cb501a2891
commit cfa796fb41
+11
View File
@@ -153,6 +153,17 @@ int build_command::do_run()
{
try
{
// Create a mob.ini in the build folder.
if (!exists(paths::prefix())) {
create_directory(paths::prefix());
}
auto prefix_ini = paths::prefix() / "mob.ini";
if (!exists(prefix_ini))
{
std::ofstream out(prefix_ini);
out << "[paths]\n" << "prefix = .\n";
}
run_all_tasks();
if (do_timings)