[Windows] Add GVFS (Git Virtual File System) (#3766)

* Add GVFS (Git Virtual File System)
* invoke all tests from git file
This commit is contained in:
Aleksandr Chebotov
2021-07-22 10:32:13 +03:00
committed by GitHub
parent 9400af6b30
commit 05781ccad0
4 changed files with 24 additions and 1 deletions
@@ -86,6 +86,7 @@ $markdown += New-MDList -Style Unordered -Lines (@(
(Get-GHCVersion),
(Get-GitVersion),
(Get-GitLFSVersion),
(Get-GVFSVersion),
(Get-GoogleCloudSDKVersion),
(Get-InnoSetupVersion),
(Get-JQVersion),
@@ -67,6 +67,11 @@ function Get-GitLFSVersion {
return "Git LFS $gitLfsVersion"
}
function Get-GVFSVersion {
$gvfsVersion = (Get-Command gvfs).Version
return "GVFS $gvfsVersion"
}
function Get-InnoSetupVersion {
return $(choco list --local-only innosetup) | Select-String -Pattern "InnoSetup"
}