Fixing code to pass KRE folder path not including bin

This commit is contained in:
Praburaj 2014-12-22 13:14:02 -08:00
parent a9ea8a87c8
commit 9e62865dd9
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}