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

Unified Diff: tools/list_pkg_directories.py

Issue 14297021: Move pub into sdk/lib/_internal. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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/list_pkg_directories.py
diff --git a/tools/list_pkg_directories.py b/tools/list_pkg_directories.py
index 6d015642dbb4dd0db62b33a6f65083f8d79b9691..2311a7419e0a549bbe9bc785ec918166fc07060c 100644
--- a/tools/list_pkg_directories.py
+++ b/tools/list_pkg_directories.py
@@ -18,6 +18,7 @@ def main(argv):
paths = map(lambda x: x + '/lib', filter(os.path.isdir, os.listdir(argv[1])))
for lib in filter(lambda x: os.path.exists(x), paths):
print lib
+ print '../sdk/lib/_internal/pub/lib'
if __name__ == '__main__':
sys.exit(main(sys.argv))

Powered by Google App Engine
This is Rietveld 408576698