summaryrefslogtreecommitdiffstats
path: root/jenkins-server-slave-setup/scripts/backup_clean-workspace.sh
blob: 67b4e768515bd8be57f64e51fad4eb3ecda0b09f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh

bdir=$1
shift

echo TOTAL $bdir
du -hsc $bdir

echo
echo Cleaning workspace $bdir
rm -rf `find $bdir -name workspace`
rm -rf `find $bdir -name workspace-files`
rm -rf `find $bdir -name javadoc`

echo
echo Cleaned TOTAL $bdir
du -hsc $bdir