Changeset 6498 for modules/branches/2.5/fw_fopsvn.pl
- Timestamp:
- 08/28/08 01:57:27 (5 years ago)
- Files:
-
- modules/branches/2.5/fw_fopsvn.pl (copied) (copied from modules/branches/2.5/frameworksvn.pl) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/fw_fopsvn.pl
r6493 r6498 2 2 3 3 # This script (sculpted from publish.pl) will check the last tarball (which must be there) 4 # based on the f rameworkxml version number and then run svn log against all updates since5 # f rameworkwas last published.4 # based on the fw_fop xml version number and then run svn log against all updates since 5 # fw_fop was last published. 6 6 # 7 7 $rver = "2.5"; 8 $f ramework = "framework";8 $fw_fop = "fw_fop"; 9 9 10 $moddir = 'f ramework';10 $moddir = 'fw_fop'; 11 11 12 12 my $reldir = "release/"; … … 25 25 26 26 # Now we know the version. Get the svnversion.txt from the last update. 27 $filename = "../../$reldir"."$rver/$f ramework-$vers.tgz";27 $filename = "../../$reldir"."$rver/$fw_fop-$vers.tgz"; 28 28 print "CHECKING VERSION: ..... "; 29 29 #print "CHECKING VERSION WITH: tar -zxOf $filename $moddir/svnversion.txt: ... "; 30 30 system("tar -zxOf ".$filename." ".$moddir."/svnversion.txt"); 31 31 print "Geting svn log since that version for $rver : .... \n\n"; 32 $svnver = system("svn log http://svn.freepbx.org/freepbx/branches/$rver -r `tar -zxOf ".$filename." ".$moddir."/svnversion.txt | sed -e s/SVN\\\ VERSION://`:HEAD");32 $svnver = system("svn log http://svn.freepbx.org/freepbx/branches/$rver/amp_conf/htdocs_panel -r `tar -zxOf ".$filename." ".$moddir."/svnversion.txt | sed -e s/SVN\\\ VERSION://`:HEAD"); 33 33
