Skip to content

Commit 00fd312

Browse files
committed
Atualização e fix di script contagem (estava contando outros arquivos além do sql
1 parent 9295867 commit 00fd312

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.aux/count.ps1

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ param(
44

55
$ErrorActionPreference = "Stop"
66

7-
$Committed = @(git ls-files).count
7+
$Committed = @(git ls-files | ?{
8+
$it = Get-Item $_ -EA SilentlyContinue;
9+
$it.name -like '*.sql'
10+
}).count
811
$TotalFiles = @(gci -rec *.sql).count
912

1013

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Progresso](https://progress-bar.xyz/20/?width=200&title=100%2F493%20scripts)
1+
![Progresso](https://progress-bar.xyz/21/?width=200&title=102%2F493%20scripts)
22
# SQL Server Lib
33

44
> [!TIP]

0 commit comments

Comments
 (0)