From 9e62865dd99bf7ed51f1a8a3aeee57cfe42a49b4 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Mon, 22 Dec 2014 13:14:02 -0800 Subject: [PATCH] Fixing code to pass KRE folder path not including bin --- test/E2ETests/Common/DeploymentUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/Common/DeploymentUtility.cs b/test/E2ETests/Common/DeploymentUtility.cs index 235547a0f3..4ace30b334 100644 --- a/test/E2ETests/Common/DeploymentUtility.cs +++ b/test/E2ETests/Common/DeploymentUtility.cs @@ -174,7 +174,7 @@ namespace E2ETests if (startParameters.PackApplicationBeforeStart) { // We use full path to KRE to pack. - startParameters.Kre = kreBin; + startParameters.Kre = new DirectoryInfo(kreBin).Parent.FullName; KpmPack(startParameters); }