jan  Wed, 14 Nov 2012 17:37:53 +0100

Modified page: http://wiki.horde.org/Doc/Dev/ReleasePackageH4
New Revision:  8
Change log:  This works. At least as long as the local tags are up-to-date.

@@ -8,9 +8,9 @@
 git push
 git push --tags
 </code>

-Bash magic to find out the changes in all packages since their last release (doesn't work in branches):
+Bash magic to find out the changes in all packages since their last release:

 <code>
-for p in framework/*; do l="horde_"$(echo $(basename $p) | tr [:upper:] [:lower:]); v=$(wget -O - -q http://pear.horde.org/rest/r/$l/latest.txt | tr [:upper:] [:lower:]); if [ -n "$v" ]; then git di $l-$v $p; fi; done +for p in framework/*; do l="horde_"$(echo $(basename $p) | tr [:upper:] [:lower:]); v=$(git describe --tags --abbrev=0 --match=$l-\*); if [ -n "$v" ]; then git di $v... $p; fi; done
 </code>

--
commits mailing list
Frequently Asked Questions: http://wiki.horde.org/FAQ
To unsubscribe, mail: [email protected]

Reply via email to