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

Unified Diff: tools/publish_all_pkgs.py

Issue 22375011: move html5lib code into dart svn repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: change location of html5lib to pkg/third_party/html5lib Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: tools/publish_all_pkgs.py
diff --git a/tools/publish_all_pkgs.py b/tools/publish_all_pkgs.py
index 6c302e2680a39c0de967809d34c1370e812b8b50..81aab97e4d44944103b68dfa5dae594a01c90255 100644
--- a/tools/publish_all_pkgs.py
+++ b/tools/publish_all_pkgs.py
@@ -18,11 +18,11 @@ import subprocess
import sys
def Main(argv):
- pkgs_to_publish = []
- for name in os.listdir('pkg'):
- if os.path.isdir(os.path.join('pkg', name)):
- if (name != '.svn' and name != 'expect'):
- pkgs_to_publish.append(os.path.join('pkg', name))
+ for pkgdir in ['pkg', 'pkg/third_party']:
+ for name in os.listdir(pkgdir):
+ if os.path.isdir(os.path.join(pkgdir, name)):
+ if (name != '.svn' and name != 'expect' and name != 'third_party'):
+ pkgs_to_publish.append(os.path.join(pkgdir, name))
for pkg in pkgs_to_publish:
print "\n\nPublishing %s:\n-------------------------------" % pkg

Powered by Google App Engine
This is Rietveld 408576698