Fix typo in wrap.py

pull/9685/head
Randy 3 years ago committed by Daniel Mensinger
parent 0ac2e4bb90
commit 79c3e9ca4d
  1. 2
      mesonbuild/wrap/wrap.py

@ -584,7 +584,7 @@ class Resolver:
patch_dir = self.wrap.values['patch_directory']
src_dir = os.path.join(self.wrap.filesdir, patch_dir)
if not os.path.isdir(src_dir):
raise WrapException(f'patch directory does not exists: {patch_dir}')
raise WrapException(f'patch directory does not exist: {patch_dir}')
self.copy_tree(src_dir, self.dirname)
def copy_tree(self, root_src_dir: str, root_dst_dir: str) -> None:

Loading…
Cancel
Save