🧹 cleanup

This commit is contained in:
Vladislav Nepogodin 2022-09-12 02:49:37 +04:00
parent a11529f1b5
commit cde2589433
No known key found for this signature in database
GPG Key ID: B62C3D10C54D5DA9

View File

@ -36,7 +36,7 @@ void btrfs_create_subvols([[maybe_unused]] const disk_part& disk, const std::str
}
const auto& saved_path = fs::current_path();
fs::current_path("/mnt");
auto subvol_list = utils::make_multiline(subvols, false, " ");
auto subvol_list = utils::make_multiline(subvols, false, ' ');
for (const auto& subvol : subvol_list) {
utils::exec(fmt::format(FMT_COMPILE("btrfs subvolume create {} 2>>/tmp/cachyos-install.log"), subvol), true);
}