We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96b643f commit d42ff54Copy full SHA for d42ff54
preprocess.py
@@ -28,7 +28,7 @@
28
# copy the source tree
29
os.system('rm -rf output/reference')
30
os.system('mkdir -p output/reference')
31
-os.system('cp -rt output/reference reference/*')
+os.system('cp -r reference/* output/reference ')
32
33
# rearrange the archive {root} here is output/reference
34
@@ -61,7 +61,7 @@
61
if (os.path.isdir(src_data_path)):
62
# the skin files should be the same for all languages thus we
63
# can merge everything
64
- os.system('cp -rl ' + src_data_path + '/* ' + data_path)
+ os.system('cp -r ' + src_data_path + '/* ' + data_path)
65
os.system('rm -r ' + src_data_path)
66
67
# also copy the custom fonts
0 commit comments