interpreter: use os.listdir instead of os.scandir to avoid ResourceWarning

pull/11913/head
Nathan Goldbaum 2 years ago committed by Jussi Pakkanen
parent 8e879911ec
commit f92bc05c18
  1. 3
      mesonbuild/interpreter/interpreter.py

@ -103,6 +103,7 @@ import typing as T
import textwrap
import importlib
import copy
import contextlib
if T.TYPE_CHECKING:
import argparse
@ -2513,7 +2514,7 @@ class Interpreter(InterpreterBase, HoldableObject):
exclude = (set(kwargs['exclude_files']), set(kwargs['exclude_directories']))
srcdir = os.path.join(self.environment.source_dir, self.subdir, args[0])
if not os.path.isdir(srcdir) or not any(os.scandir(srcdir)):
if not os.path.isdir(srcdir) or not any(os.listdir(srcdir)):
FeatureNew.single_use('install_subdir with empty directory', '0.47.0', self.subproject, location=node)
FeatureDeprecated.single_use('install_subdir with empty directory', '0.60.0', self.subproject,
'It worked by accident and is buggy. Use install_emptydir instead.', node)

Loading…
Cancel
Save