~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to tools/buildbot/slaves/osx10.4-gcc4.0.1-ia32/svnclean.sh

  • Committer: Max Bowsher
  • Date: 2012-06-27 12:25:12 UTC
  • mfrom: (44.1.46 precise)
  • Revision ID: _@maxb.eu-20120627122512-kmo8fj0lr7mlkppj
Make tree identical to precise branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/bash
2
 
 
3
 
# ../unmount_ramd.sh
4
 
 
5
 
echo "========= make extraclean"
6
 
test -e Makefile && (make extraclean || exit $?)
7
 
rm -rf ../build/*
8
 
rm -rf .svn
9
 
rm -rf .buildbot-sourcedata
10
 
 
11
 
exit 0