Index: trunk/tools/make-release/make-release |
— | — | @@ -174,15 +174,14 @@ |
175 | 175 | dir2 += '/languages/messages' |
176 | 176 | else: |
177 | 177 | print "Generating normal patch file..." |
178 | | - excludedExtensions = ['messages', '*.png', '*.jpg', '*.xcf', '*.gif', '*.svg', '*.tiff'] |
| 178 | + excludedExtensions = ['messages', '*.png', '*.jpg', '*.xcf', '*.gif', '*.svg', '*.tiff', '*.zip', '*.xmp'] |
179 | 179 | for ext in excludedExtensions: |
180 | 180 | args.extend(['-x', ext]) |
181 | 181 | |
182 | 182 | args.extend([dir1, dir2]) |
183 | 183 | print ' '.join(args) |
184 | 184 | diffProc = subprocess.Popen(args, stdout = subprocess.PIPE) |
185 | | - gzipProc = subprocess.Popen(['gzip', '-9'], |
186 | | - stdin = diffProc.stdout, stdout = patchFile) |
| 185 | + gzipProc = subprocess.Popen(['gzip', '-9'], stdin = diffProc.stdout, stdout = patchFile) |
187 | 186 | |
188 | 187 | diffStatus = diffProc.wait() |
189 | 188 | |
— | — | @@ -270,7 +269,7 @@ |
271 | 270 | # TODO: Change RELEASE-NOTES to use http://www.mediawiki.org/wiki/Release_notes/ |
272 | 271 | print |
273 | 272 | print "Full release notes:" |
274 | | - print 'http://svn.wikimedia.org/svnroot/mediawiki/'+branch+'/phase3/RELEASE-NOTES' |
| 273 | + print 'http://svn.wikimedia.org/svnroot/mediawiki/' +branch+ '/phase3/RELEASE-NOTES' |
275 | 274 | print |
276 | 275 | print |
277 | 276 | print '**********************************************************************' |