From 2aaeedc48a91b99a9c958fef170f3cc82e2ec0c9 Mon Sep 17 00:00:00 2001 From: Wei Wang Date: Mon, 30 Mar 2015 17:09:51 -0700 Subject: [PATCH] Fix newly added --no-source variations --- test/E2ETests/Common/DeploymentUtility.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/E2ETests/Common/DeploymentUtility.cs b/test/E2ETests/Common/DeploymentUtility.cs index 33595e9fcb..ce2ad3e1ec 100644 --- a/test/E2ETests/Common/DeploymentUtility.cs +++ b/test/E2ETests/Common/DeploymentUtility.cs @@ -219,7 +219,7 @@ namespace E2ETests // Work around for https://github.com/aspnet/dnx/issues/1515 string backup_Dnx_Packages = string.Empty; - if (startParameters.BundleWithNoSource) + if (startParameters.PublishWithNoSource) { backup_Dnx_Packages = Environment.GetEnvironmentVariable("DNX_PACKAGES"); Environment.SetEnvironmentVariable("DNX_PACKAGES", string.Empty); @@ -228,7 +228,7 @@ namespace E2ETests var hostProcess = Process.Start(startInfo); logger.LogInformation("Started iisexpress. Process Id : {processId}", hostProcess.Id); - if (startParameters.BundleWithNoSource) + if (startParameters.PublishWithNoSource) { // Roll back the change. Environment.SetEnvironmentVariable("DNX_PACKAGES", backup_Dnx_Packages); @@ -252,7 +252,7 @@ namespace E2ETests // Work around for https://github.com/aspnet/dnx/issues/1515 string backup_Dnx_Packages = string.Empty; - if (startParameters.BundleWithNoSource) + if (startParameters.PublishWithNoSource) { backup_Dnx_Packages = Environment.GetEnvironmentVariable("DNX_PACKAGES"); Environment.SetEnvironmentVariable("DNX_PACKAGES", string.Empty); @@ -260,7 +260,7 @@ namespace E2ETests var hostProcess = Process.Start(startInfo); - if (startParameters.BundleWithNoSource) + if (startParameters.PublishWithNoSource) { // Roll back the change. Environment.SetEnvironmentVariable("DNX_PACKAGES", backup_Dnx_Packages);