https://github.com/cran/mvtnorm
Revision 39daaf201178042e8c1adde29565d96e5424e21a authored by Torsten Hothorn on 31 May 2018, 19:38:18 UTC, committed by cran-robot on 31 May 2018, 19:38:18 UTC
1 parent fa8ec0b
Raw File
Tip revision: 39daaf201178042e8c1adde29565d96e5424e21a authored by Torsten Hothorn on 31 May 2018, 19:38:18 UTC
version 1.0-8
Tip revision: 39daaf2
cleanup
#!/bin/sh

for f in ./R/*~; do
    rm -f $f
done

for f in ./R/*.ps; do
    rm -f $f
done


for f in ./man/*~; do
    rm -f $f
done

for f in ./man/*.ps; do
    rm -f $f
done


for f in ./inst/*~; do
    rm -f $f
done

for f in ./tests/*~; do
    rm -f $f
done

for f in ./tests/*.ps; do
    rm -f $f
done

for f in ./src/*.*o; do
    rm -f $f
done

for f in ./src/*~; do
    rm -f $f
done

for f in *~; do
    rm -f $f
done

find . -name "DEADJOE" -exec rm -f {} \;

find . -name "mvtnormAPI*gz" -exec rm -f {} \;

find . -name "mvtnormAPI.Rcheck" -exec rm -rf {} \;

exit 0
back to top