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