Changeset 10862 for modules/branches
- Timestamp:
- 01/09/11 11:31:58 (2 years ago)
- Files:
-
- modules/branches/2.4 (modified) (1 prop)
- modules/branches/2.4/publish.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4
- Property svnmerge-integrated changed from /modules/branches/2.3:1-5233,5245,5333,5336 /modules/branches/2.5:1-5852,5880,5930,5995,6016-6017,6030-6031,6142,6218,6291,6361,6363,6413-6414,6422,6428-6430,6442-6443,6557,6710,6714-6715,6969-6970,6984,7248,7281,7858-7859,7875,7878,7886,7890,8615,8622,10302,10342,10461,10520 to /modules/branches/2.5:1-5852,5880,5930,5995,6016-6017,6030-6031,6142,6218,6291,6361,6363,6413-6414,6422,6428-6430,6442-6443,6557,6710,6714-6715,6969-6970,6984,7248,7281,7858-7859,7875,7878,7886,7890,8615,8622,10302,10342,10461,10520,10861 /modules/branches/2.3:1-5233,5245,5333,5336
modules/branches/2.4/publish.pl
r5513 r10862 5 5 # lose work. 6 6 # 7 system("which md5sum"); # typical linux format 8 if ($? == 0) { 9 $md5_command = 'md5sum'; 10 } else { 11 system("which md5"); # OSX format 12 if ($? == 0) { 13 $md5_command = 'md5 -r'; 14 } else { 15 die "no md5sum command\n"; 16 } 17 } 18 7 19 $debug = 0; 8 20 $checkphp = 1; … … 143 155 system("tar zcf $filename --exclude .svn $rawname"); 144 156 # Update the md5 info 145 open MD5, " md5sum$filename|";157 open MD5, "$md5_command $filename|"; 146 158 $md5 = <MD5>; 147 159 close MD5;
