~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to config/prep_buildtree

  • Committer: alvherre
  • Date: 2006-04-21 23:02:58 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:249
We use Subversion, not CVS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
buildtree=`cd ${2:-'.'} && pwd`
24
24
 
25
 
for item in `find "$sourcetree" -type d \( -name CVS -prune -o -print \)`; do
 
25
for item in `find "$sourcetree" -type d \( -name .svn -prune -o -print \)`; do
26
26
    subdir=`expr "$item" : "$sourcetree\(.*\)"`
27
27
    if test ! -d "$buildtree/$subdir"; then
28
28
        mkdir -p "$buildtree/$subdir" || exit 1