mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
318 B
11 lines
318 B
#!/usr/bin/env pwsh |
|
# Trigger the commit hook's formatter against the working tree without committing, |
|
# applying the same formatting the pre-commit hook enforces. |
|
$ErrorActionPreference = 'Stop' |
|
Push-Location (Join-Path $PSScriptRoot '..') |
|
try { |
|
bash BuildTools/pre-commit --format |
|
} |
|
finally { |
|
Pop-Location |
|
}
|
|
|