File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/refind_btrfs/state_management Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = refind_btrfs
3
- version = 0.5.0
3
+ version = 0.5.1
4
4
description = Generate rEFInd manual boot stanzas from Btrfs snapshots
5
5
long_description = file: README.md
6
6
keywords = rEFInd, btrfs
Original file line number Diff line number Diff line change 28
28
29
29
setuptools .setup (
30
30
name = "refind-btrfs" ,
31
- version = "0.5.0 " ,
31
+ version = "0.5.1 " ,
32
32
author = "Luka Žaja" ,
33
33
author_email = "luka.zaja@protonmail.com" ,
34
34
description = "Generate rEFInd manual boot stanzas from Btrfs snapshots" ,
Original file line number Diff line number Diff line change @@ -238,6 +238,10 @@ def combine_boot_stanzas_with_snapshots(self) -> None:
238
238
boot_stanza_preparation_results : list [BootStanzaWithSnapshots ] = []
239
239
240
240
for boot_stanza in usable_boot_stanzas :
241
+ is_excluded = any (
242
+ boot_stanza .is_matched_with (loader_filename )
243
+ for loader_filename in boot_stanza_generation .source_exclusion
244
+ )
241
245
matched_snapshots : list [Subvolume ] = []
242
246
unmatched_snapshots : list [Subvolume ] = []
243
247
@@ -246,10 +250,6 @@ def combine_boot_stanzas_with_snapshots(self) -> None:
246
250
snapshot .with_boot_files_check_result (boot_stanza )
247
251
for snapshot in actual_bootable_snapshots
248
252
)
249
- is_excluded = any (
250
- boot_stanza .is_matched_with (loader_filename )
251
- for loader_filename in boot_stanza_generation .source_exclusion
252
- )
253
253
254
254
for snapshot in checked_bootable_snapshots :
255
255
append_func = (
You can’t perform that action at this time.
0 commit comments