Index: utils/pub/git.dart |
diff --git a/utils/pub/git.dart b/utils/pub/git.dart |
index 47519c221a6d6872a1a6cde3f810dbf8534cccba..53ecbe7826bde9f7d1c215d913ea514970c54bf2 100644 |
--- a/utils/pub/git.dart |
+++ b/utils/pub/git.dart |
@@ -28,8 +28,8 @@ Future<List<String>> run(List<String> args, |
environment: environment); |
}).then((result) { |
if (!result.success) throw new Exception( |
- 'Git error. Command: git ${Strings.join(args, " ")}\n' |
- '${Strings.join(result.stderr, "\n")}'); |
+ 'Git error. Command: git ${args.join(" ")}\n' |
+ '${result.stderr.join("\n")}'); |
return result.stdout; |
}); |