Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: tools/publish_all_pkgs.py

Issue 12088059: Add script to publish all packages in repo to pub. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE file.
6 #
7 # Upload all packages in pkg/ (other than a few that should be explicitly
8 # excluded), plus sdk/lib/_internal/compiler .
9 #
10 # Usage: publish_all_pkgs.py
11 #
12 # "pub" must be in PATH.
13
14
15 import os
16 import os.path
17 import subprocess
18 import sys
19
20 def Main(argv):
21 pkgs_to_publish = []
22 for name in os.listdir('pkg'):
23 if os.path.isdir(os.path.join('pkg', name)):
24 if (name != '.svn' and name != 'fixnum' and
25 not name.endswith('-experimental')):
26 pkgs_to_publish.append(os.path.join('pkg', name))
27
28 # Publish dart2js as an "unsupported" package.
29 pkgs_to_publish.append(
30 os.path.join('sdk', 'lib', '_internal', 'compiler'))
31
32 for pkg in pkgs_to_publish:
33 print "Publishing " + pkg
34 subprocess.call(['python', 'tools/publish_pkg.py', pkg])
35
36 if __name__ == '__main__':
37 sys.exit(Main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698