index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-11-29 20:30:54 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-11-29 20:30:54 +0000 |
commit | 4d153c5bd1803657e9d1fb6189c36676736f8c68 (patch) | |
tree | 5ee04d07fcd86d711d953b3e86f24f1f92ac58f1 /archinstall/lib/profiles.py | |
parent | f5aac7f24e823b8559deffd56c71cb89d7d142ff (diff) |
-rw-r--r-- | archinstall/lib/profiles.py | 2 |
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index 2cf96eb2..1e2c1206 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -57,7 +57,7 @@ def list_profiles(filter_irrelevant_macs=True): if os.path.splitext(profile)[1] == '.py': tailored = False if len(mac := re.findall('(([a-zA-z0-9]{2}[-:]){5}([a-zA-z0-9]{2}))', profile)): - if filter_irrelevant_macs and mac[0][0] not in local_macs: + if filter_irrelevant_macs and mac[0][0].lower() not in local_macs: continue tailored = True |