Skip to content

Commit

Permalink
Merge pull request Squirrel#616 from khellang/months-not-minutes
Browse files Browse the repository at this point in the history
Use months instead of minutes for InstallDate
  • Loading branch information
anaisbetts committed Mar 1, 2016
2 parents b814ada + e6305cd commit 9de260c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Squirrel/UpdateManager.InstallHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public async Task<RegistryKey> CreateUninstallerRegistryEntry(string uninstallCm
var stringsToWrite = new[] {
new { Key = "DisplayName", Value = zp.Title ?? zp.Description ?? zp.Summary },
new { Key = "DisplayVersion", Value = zp.Version.ToString() },
new { Key = "InstallDate", Value = DateTime.Now.ToString("yyyymmdd") },
new { Key = "InstallDate", Value = DateTime.Now.ToString("yyyyMMdd") },
new { Key = "InstallLocation", Value = rootAppDirectory },
new { Key = "Publisher", Value = String.Join(",", zp.Authors) },
new { Key = "QuietUninstallString", Value = String.Format("{0} {1}", uninstallCmd, quietSwitch) },
Expand Down

0 comments on commit 9de260c

Please sign in to comment.