perl-5.22
Last change
on this file since e248cf2 was
0105685,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
use real build numbers instead of svn revision numbes
|
-
Property mode set to
100755
|
File size:
212 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | for PKG in `find -name '*.pkg'`; do |
---|
4 | SVNSTATUS=`svn status -v "$PKG"` |
---|
5 | BUILD=`echo "$SVNSTATUS" | egrep -o '[0-9]+' | head -n 2 | tail -n1` |
---|
6 | echo $BUILD > `echo "$PKG"| sed 's/.pkg$//g'`.build |
---|
7 | done |
---|
Note: See
TracBrowser
for help on using the repository browser.