From da27f91ff32bfebd47bc8822d548039f1945c9c9 Mon Sep 17 00:00:00 2001
From: "ajohnsen@google.com" <ajohnsen@google.com>
Date: Fri, 24 May 2013 14:02:53 +0000
Subject: [PATCH] Include Platform.envrironment in pub, when passing custom
 environment option.

BUG=

Review URL: https://codereview.chromium.org//15796003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge@23149 260f80e4-7a28-3924-810f-c04153c831b5
---
 lib/src/io.dart | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/src/io.dart b/lib/src/io.dart
index f0f83c95..659661fe 100644
--- a/lib/src/io.dart
+++ b/lib/src/io.dart
@@ -592,12 +592,19 @@ Future _doProcess(Function fn, String executable, List<String> args,
     executable = "cmd";
   }
 
+  var env = null;
+  if (environment != null) {
+    env = new Map.from(Platform.environment);
+    environment.forEach((key, value) => env[key] = value);
+  }
+
+
   log.process(executable, args);
 
   return fn(executable,
             args,
             workingDirectory: workingDir,
-            environment: environment);
+            environment: env);
 }
 
 /// Wraps [input] to provide a timeout. If [input] completes before
-- 
GitLab