Skip to content

Commit f1438b9

Browse files
Merge pull request #410 from zikato/patch-1
Fix multiple file auto-format
2 parents d8749fb + 48f7558 commit f1438b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/TabsAndSpaces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
run: |
2929
$changedFiles = git --no-pager diff --name-only --relative --diff-filter=AM "${{ github.event.before }}" "${{ github.sha }}" -- '***.sql'
3030
$tabSize = 4
31-
$outputString = ""
3231
$changedFiles | ForEach-Object {
32+
$outputString = ""
3333
$fullPath = $_
3434
$Content = Get-Content $fullPath
3535
foreach ($Ctnt in $Content) {

0 commit comments

Comments
 (0)