rtengine/scripts/copy_util.py
Kevin Trogant 9670844bb2 Move towards using DXC for compiling shaders
This is recommended by the vulkan documentation.
2024-01-25 23:33:29 +01:00

14 lines
185 B
Python

#!/usr/bin/env python3
import sys
import shutil
import os
if len(sys.argv) < 3:
os._exit(1)
shutil.copyfile(sys.argv[1], sys.argv[2])
shutil.copymode(sys.argv[1], sys.argv[2])