Skip to content
This repository was archived by the owner on Nov 13, 2021. It is now read-only.

Commit e68ec54

Browse files
author
herbelin
committed
MAJ
git-svn-id: svn://scm.gforge.inria.fr/svn/coq/trunk@8742 85f007b7-540e-0410-9357-904b9bb8a0f7
1 parent 464ad3e commit e68ec54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/check-translate

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
echo -------------- Producing translated files ---------------------
4-
rm */*/*.v8
4+
rm */*/*.v8 >& /dev/null
55
make COQ_XML=-translate theories || { echo ---- Failed to translate; exit 1; }
66
if [ -e translated ]; then rm -r translated; fi
77
if [ -e successful-translation ]; then rm -r successful-translation; fi
@@ -13,7 +13,7 @@ cd translated
1313
for i in */*.v
1414
do
1515
mkdir ../theories/`dirname $i` >& /dev/null
16-
cp "$i"8 ../theories/$i
16+
mv "$i"8 ../theories/$i
1717
done
1818
cd ..
1919
echo --------------- Recompiling translated files ------------------

0 commit comments

Comments
 (0)