rbdlsim/3rdparty/libccd/src/testsuites/cu/latest.sh

18 lines
274 B
Bash
Raw Normal View History

2020-10-03 22:55:14 +02:00
#!/bin/bash
repo=http://git.danfis.cz/cu.git
files="COPYING \
COPYING.LESSER \
cu.h \
cu.c \
Makefile \
check-regressions \
.gitignore \
"
rm -rf cu
git clone $repo
for file in $files; do
mv cu/"$file" .
done;
rm -rf cu