jida...@jidanni.org wrote:
> My script to show me the diffs,
> 
>       svn diff -r BASE:HEAD RELEASE-NOTES|wdiff -d -3
> 
> I suppose will now have to be
> 
>       for i in $(ls -r RELEASE-NOTES-*|sed 2q)
>       do
>           echo $i diff:
>           svn diff -r BASE:HEAD $i|wdiff -d -3
>       done
> 
> in order to not have to be rewritten each time a version number changes. Hmmm.

No need for the subprocess. for i in RELEASE-NOTES-* would do
Note that now you should be getting in RELEASE-NOTES-1.18 changes that
otherwise you weren't because they would just have their RELEASE NOTES
in the backport.


_______________________________________________
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Reply via email to