From 7764804d4c57a9f89d00a5bb05d66c250ced04d3 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 6 Dec 2020 12:37:51 +0100 Subject: Added application profiles to the setup.py Otherwise local lookups for application specific profiles will break/be missing. --- archinstall/lib/profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archinstall') diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index cd408d52..a7b2603c 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -25,7 +25,7 @@ def list_profiles(filter_irrelevant_macs=True, subpath=''): for PATH_ITEM in storage['PROFILE_PATH']: import time print('Walking:', os.path.abspath(os.path.expanduser(PATH_ITEM+subpath))) - time.sleep(10) + time.sleep(3) for root, folders, files in os.walk(os.path.abspath(os.path.expanduser(PATH_ITEM+subpath))): for file in files: if os.path.splitext(file)[1] == '.py': -- cgit v1.2.3-54-g00ecf