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

Unified Diff: tools/testing/dart/drt_updater.dart

Issue 295603003: Fix logical error in r36299 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/drt_updater.dart
diff --git a/tools/testing/dart/drt_updater.dart b/tools/testing/dart/drt_updater.dart
index beeb014cf16d156b18863f5f879437c8e353fb3e..3f348859fa356dce9d0c50e174a41a68fda31eaf 100644
--- a/tools/testing/dart/drt_updater.dart
+++ b/tools/testing/dart/drt_updater.dart
@@ -40,7 +40,7 @@ class _DartiumUpdater {
List<String> get _getUpdateCommand {
Uri updateScript = TestUtils.dartDirUri.resolve(script);
- List<String> command = [updateScriptPath.toFilePath()];
+ List<String> command = [updateScript.toFilePath()];
if (null != option) {
command.add(option);
}
« 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