git-svn-id: https://nixos.org/repos/nix/release/trunk/channels@33658 70bd8c7a-acb8-0310-9f0d-9cc1c95dcdbb

This commit is contained in:
Eelco Dolstra 2012-04-06 20:17:13 +00:00
parent d0e1a3c388
commit d73ddef07c

View file

@ -6,11 +6,11 @@ prev=""
for i in $(cd "$releasesDir" && ls -d nixpkgs-*pre* | sort -n); do
if test -e "$releasesDir/$i/MANIFEST"; then
if test -n "$prev" -a ! -e "$releasesDir/$i/patches-created"; then
if test -n "$prev" -a ! -e "$releasesDir/$i/.patches-created"; then
echo $prev "->" $i
date
time ./generate-patches.sh "$releasesDir/$prev" "$releasesDir/$i"
touch "$releasesDir/$i/patches-created"
touch "$releasesDir/$i/.patches-created"
fi
prev=$i
fi