From d7c62f36092e62cad1e6ffb53ef6dc4e88fab6ff Mon Sep 17 00:00:00 2001 From: Steve Kamerman Date: Wed, 22 May 2013 15:54:18 -0400 Subject: [PATCH] Added interpolation support to Env plugin --- PHPCI/Plugin/Env.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Plugin/Env.php b/PHPCI/Plugin/Env.php index 1de016fb..e09d3dbf 100644 --- a/PHPCI/Plugin/Env.php +++ b/PHPCI/Plugin/Env.php @@ -41,7 +41,7 @@ class Env implements \PHPCI\Plugin $env_var = "$key=$value"; } - if (!putenv($env_var)) { + if (!putenv($this->phpci->interpolate($env_var))) { $success = false; $this->phpci->logFailure("Unable to set environment variable"); }