We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9295867 commit 00fd312Copy full SHA for 00fd312
.aux/count.ps1
@@ -4,7 +4,10 @@ param(
4
5
$ErrorActionPreference = "Stop"
6
7
-$Committed = @(git ls-files).count
+$Committed = @(git ls-files | ?{
8
+ $it = Get-Item $_ -EA SilentlyContinue;
9
+ $it.name -like '*.sql'
10
+ }).count
11
$TotalFiles = @(gci -rec *.sql).count
12
13
README.md
@@ -1,4 +1,4 @@
1
-
+
2
# SQL Server Lib
3
> [!TIP]
0 commit comments