projects
/
OSXPackageBuilder.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Clarify when to use the -pcre option when constructing the distribution package content
[OSXPackageBuilder.git]
/
findversion.pl
1
#!/usr/bin/perl
2
3
while(<>)
4
{
5
# Look for the first pattern that looks like a version. This must be
6
# the most recent version.
7
if(/Version\s(\d+\.\d+(?:\.\d+))/)
8
{
9
print $1;
10
exit(0);
11
}
12
}
13
14
exit(1);