https://github.com/cran/mboost
Revision be09f259652f2ec2c0a5cbb85899b17b3b8e149d authored by Torsten Hothorn on 26 June 2014, 11:02:51 UTC, committed by cran-robot on 26 June 2014, 11:02:51 UTC
1 parent 39271cf
Raw File
Tip revision: be09f259652f2ec2c0a5cbb85899b17b3b8e149d authored by Torsten Hothorn on 26 June 2014, 11:02:51 UTC
version 2.3-0
Tip revision: be09f25
cleanup
#!/bin/bash

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/doc/*~; do
    rm -f $f
done

rm -rf ./inst/doc/figures

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

rm -f ./inst/tests/figures

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

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

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


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

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

for f in ./inst/cache/Rplots.ps; do
    rm -f $f
done

for f in ./inst/cache/.RData; do
    rm -f $f
done

for f in .Rbuildignore~; do
    rm -f $f
done

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

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

exit 0
back to top