https://github.com/cran/mvtnorm
Raw File
Tip revision: de50b28311620648ffbb4d63f6310a46658d6012 authored by Torsten Hothorn on 09 January 2020, 13:10:04 UTC
version 1.0-12
Tip revision: de50b28
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