This commit is contained in:
deathbybandaid 2023-01-07 11:27:07 -05:00
parent b4f5652cd3
commit 966a8a1e9b

View File

@ -104,7 +104,7 @@ def get_file_path_list(arr):
env_paths = []
for env_path_key in valid_keys:
env_path = os.environ[x]
env_path = os.environ[env_path_key]
if "|" in env_path:
env_paths.extend(env_path.split("|"))
else: