From d3cd563799cee2e4872027987b1edd78dcbfb329 Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 09 2020 08:49:25 +0000 Subject: Apply patch 0005-boom-pass-add-del-opts-to-edit_entry-in-edit-command.patch patch_name: 0005-boom-pass-add-del-opts-to-edit_entry-in-edit-command.patch present_in_specfile: true --- diff --git a/boom/command.py b/boom/command.py index 8900457..165a8a8 100644 --- a/boom/command.py +++ b/boom/command.py @@ -2256,6 +2256,9 @@ def _edit_cmd(cmd_args, select, opts, identifier): profile = _find_profile(cmd_args, version, machine_id, "edit") + add_opts = cmd_args.add_opts + del_opts = cmd_args.del_opts + arch = cmd_args.architecture try: @@ -2264,6 +2267,7 @@ def _edit_cmd(cmd_args, select, opts, identifier): lvm_root_lv=lvm_root_lv, btrfs_subvol_path=btrfs_subvol_path, btrfs_subvol_id=btrfs_subvol_id, profile=profile, + add_opts=add_opts, del_opts=del_opts, architecture=arch, expand=cmd_args.expand_variables) except ValueError as e: print(e)