mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
8 lines
182 B
Python
8 lines
182 B
Python
#! /usr/bin/env python
|
|
|
|
###############
|
|
import sys, os, shutil
|
|
|
|
if os.stat(sys.argv[1]).st_size > 0 or not os.path.isfile(sys.argv[3]):
|
|
shutil.copyfile(sys.argv[2], sys.argv[3])
|