From 71b66b9b67b208d58f6ff7215ba6d14457964c85 Mon Sep 17 00:00:00 2001 From: Derrick Stolee Date: Mon, 10 Jun 2019 10:03:25 -0400 Subject: [PATCH] Update Git to v2.22.0.vfs.1 Includes a change to the post-indexchanged hook (now the post-index-change hook). Signed-off-by: Derrick Stolee --- GVFS/GVFS.Build/GVFS.props | 2 +- GVFS/GVFS.Common/GVFSConstants.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GVFS/GVFS.Build/GVFS.props b/GVFS/GVFS.Build/GVFS.props index 8dfb90ad8..97b4280be 100644 --- a/GVFS/GVFS.Build/GVFS.props +++ b/GVFS/GVFS.Build/GVFS.props @@ -3,7 +3,7 @@ 0.2.173.2 - 2.20190522.3 + 2.20190610.5 diff --git a/GVFS/GVFS.Common/GVFSConstants.cs b/GVFS/GVFS.Common/GVFSConstants.cs index d71722a8f..9b4df43bb 100644 --- a/GVFS/GVFS.Common/GVFSConstants.cs +++ b/GVFS/GVFS.Common/GVFSConstants.cs @@ -157,7 +157,7 @@ public static class Hooks public const string PostCommandHookName = "post-command"; public const string ReadObjectName = "read-object"; public const string VirtualFileSystemName = "virtual-filesystem"; - public const string PostIndexChangedName = "post-indexchanged"; + public const string PostIndexChangedName = "post-index-change"; public static readonly string Root = Path.Combine(DotGit.Root, "hooks"); public static readonly string PreCommandPath = Path.Combine(Hooks.Root, PreCommandHookName); public static readonly string PostCommandPath = Path.Combine(Hooks.Root, PostCommandHookName);