Skip to content

Commit d42ff54

Browse files
mmMikePovilas Kanapickas
authored andcommitted
cp has less options on Mac OSX
1 parent 96b643f commit d42ff54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# copy the source tree
2929
os.system('rm -rf output/reference')
3030
os.system('mkdir -p output/reference')
31-
os.system('cp -rt output/reference reference/*')
31+
os.system('cp -r reference/* output/reference ')
3232

3333
# rearrange the archive {root} here is output/reference
3434

@@ -61,7 +61,7 @@
6161
if (os.path.isdir(src_data_path)):
6262
# the skin files should be the same for all languages thus we
6363
# can merge everything
64-
os.system('cp -rl ' + src_data_path + '/* ' + data_path)
64+
os.system('cp -r ' + src_data_path + '/* ' + data_path)
6565
os.system('rm -r ' + src_data_path)
6666

6767
# also copy the custom fonts

0 commit comments

Comments
 (0)