The open source OpenXR runtime

t/steamvr: Attempt to fix spurious CI failure

fix suggested by thaytan.

authored by

Christoph Haag and committed by
Jakob Bornecrantz
06407289 af8eaa86

+1 -1
+1 -1
src/xrt/targets/steamvr_drv/copy_assets.py
··· 29 29 shutil.copyfile(input_path, output_path) 30 30 elif is_dir: 31 31 shutil.rmtree(output_path, ignore_errors=True) 32 - shutil.copytree(input_path, output_path) 32 + shutil.copytree(input_path, output_path, dirs_exist_ok=True) 33 33 else: 34 34 print(sys.argv[1], "must be FILE or DIRECTORY") 35 35 sys.exit(1)