From e9d9e0c240f2b25fc6ae574332e3fc7bb8d58e43 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Sat, 18 Jun 2016 23:30:10 -0500 Subject: [PATCH] (GH-813) Shorten Template default log path Make the default value that comes out of the template for logging use a much shorter path. --- src/chocolatey/infrastructure.app/templates/TemplateValues.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chocolatey/infrastructure.app/templates/TemplateValues.cs b/src/chocolatey/infrastructure.app/templates/TemplateValues.cs index eb265fd0e4..338ba37340 100644 --- a/src/chocolatey/infrastructure.app/templates/TemplateValues.cs +++ b/src/chocolatey/infrastructure.app/templates/TemplateValues.cs @@ -36,7 +36,7 @@ public void set_normal() InstallerType = "EXE_MSI_OR_MSU"; Url = ""; Url64 = ""; - SilentArgs = @"/qn /norestart /l*v `""$($env:TEMP)\chocolatey\$($packageName)\$($packageName).MsiInstall.log`"""; + SilentArgs = @"/qn /norestart /l*v `""$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`"""; AutomaticPackageNotesNuspec = ""; Checksum = ""; ChecksumType = "md5";