From b227b35b3d753f467e392e4b69b2b979731cc023 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Sun, 29 Mar 2015 13:01:21 -0500 Subject: [PATCH] (GH-202) Fix formatting on Noop logging --- src/chocolatey/infrastructure.app/services/PowershellService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chocolatey/infrastructure.app/services/PowershellService.cs b/src/chocolatey/infrastructure.app/services/PowershellService.cs index 45a06750af..f8b4625ff8 100644 --- a/src/chocolatey/infrastructure.app/services/PowershellService.cs +++ b/src/chocolatey/infrastructure.app/services/PowershellService.cs @@ -65,7 +65,7 @@ public void noop_action(PackageResult packageResult, CommandNameType command) var chocoInstall = installScript.FirstOrDefault(); this.Log().Info("Would have run '{0}':".format_with(chocoInstall)); - this.Log().Warn(_fileSystem.read_file(chocoInstall)); + this.Log().Warn(_fileSystem.read_file(chocoInstall).escape_curly_braces()); } }