scons_gd/scons/test/TaskMaster/bug_2811/fixture_dir/mycopy.py
2022-10-15 16:06:26 +02:00

9 lines
103 B
Python

import sys
import shutil
ffrom = sys.argv[1]
to = sys.argv[2]
shutil.copyfile(ffrom, to)
sys.exit(0)