]> git.pld-linux.org Git - packages/lighttpd.git/blob - branch.sh
- do not by default forbid download of .pl (and .fcgi) scripts
[packages/lighttpd.git] / branch.sh
1 #!/bin/sh
2 set -e
3 svn=svn://svn.lighttpd.net/lighttpd
4 tag=lighttpd-1.4.19
5 branch=lighttpd-1.4.x
6
7 old=$svn/tags/$tag
8 new=$svn/branches/$branch
9 echo "Running diff: $old -> $new"
10 LC_ALL=C svn diff --old=$old --new=$new > lighttpd-branch.diff
11
12 echo "Excluding files which change version (configure.in, SConstruct)"
13 filterdiff -x 'configure.in' lighttpd-branch.diff > lighttpd-branch.diff.tmp
14 mv -f lighttpd-branch.diff.tmp lighttpd-branch.diff
This page took 0.024612 seconds and 3 git commands to generate.