blob: 2d8297fbf9f4e04738f4494497e88a0247a0f79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
# this script updates all code from subversion in the standard developer's layout.
# <hans@at.or.at>
# Usage: just run it and it should find things if you have your stuff layed
# out in the standard dev layout, or used checkout-developer-layout.sh to
# checkout your pd source tree
cvs_root_dir=$(echo $0 | sed 's|\(.*\)/.*$|\1|')/..
SVNOPTIONS="--ignore-externals"
cd $cvs_root_dir
echo "Running svn update:"
svn update ${SVNOPTIONS}
echo "Running svn update for Gem:"
for section in Gem abstractions doc externals packages pd scripts; do
echo "$section"
cd $section
svn update ${SVNOPTIONS}
cd ..
done
|