]> git.pld-linux.org Git - packages/lighttpd.git/blame - branch.sh
- up to 2336
[packages/lighttpd.git] / branch.sh
CommitLineData
68f8f1d1 1#!/bin/sh
51e3e0fc
ER
2set -e
3svn=svn://svn.lighttpd.net/lighttpd
709c1a0b 4tag=lighttpd-1.4.20
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
7ec65614 12echo "Excluding files which change version or were not in dist tarball"
709c1a0b 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.026658 seconds and 4 git commands to generate.