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

Unified Diff: tools/run_pub.py

Issue 896623005: Use native async/await support in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/analyzer/analyze_library.status ('k') | tools/status_clean.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run_pub.py
diff --git a/tools/run_pub.py b/tools/run_pub.py
index e11701d0cc19d9791d2eafa1fbc5bab4dc0355cc..c43b0396d85069441d93c70dca15d9630764ec9c 100755
--- a/tools/run_pub.py
+++ b/tools/run_pub.py
@@ -12,8 +12,7 @@ import sys
SCRIPT_DIR = os.path.dirname(sys.argv[0])
DART_ROOT = os.path.realpath(os.path.join(SCRIPT_DIR, '..'))
-PUB_PATH = os.path.join(DART_ROOT,
- 'sdk/lib/_internal/pub_generated/bin/pub.dart')
+PUB_PATH = os.path.join(DART_ROOT, 'sdk/lib/_internal/pub/bin/pub.dart')
CANARY_PATH = os.path.join(DART_ROOT, 'tools', 'canary.dart')
usage = """run_pub.py --package-root=<package root>"""
@@ -102,4 +101,4 @@ def main():
if __name__ == '__main__':
- sys.exit(main());
+ sys.exit(main())
« no previous file with comments | « tests/lib/analyzer/analyze_library.status ('k') | tools/status_clean.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698