* Commit old changed to bdiff.sh - but bdiff.sh is obsolete.

This commit is contained in:
Eelco Dolstra 2004-12-16 14:59:05 +00:00
parent 77970f8daf
commit f4041cc175
1 changed files with 26 additions and 14 deletions

View File

@ -1,7 +1,7 @@
#! /bin/sh -e
#DIFF=/home/eelco/Dev/nix/zdelta-2.1/zdc
DIFF=/home/eelco/Dev/nix/bsdiff-4.2/bsdiff
#DIFF=zdc
DIFF=bsdiff
srcA=$1
srcB=$2
@ -15,6 +15,12 @@ fi
if test -f "$srcA/$fn"; then
if ! test -f "$srcB/$fn"; then
echo "DELETE $fn"
else
if ! cmp "$srcA/$fn" "$srcB/$fn" > /dev/null; then
echo "FILE DELTA FOR $fn"
TMPFILE=/tmp/__bsdiff
@ -36,6 +42,12 @@ fi
rm $TMPFILE
fi
fi
# Note: be silent about unchanged files.
else
echo "NEW FILE $fn"