mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
9 lines
209 B
Plaintext
9 lines
209 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
FILES=$(git diff --cached --name-only --diff-filter=ACM "*.cs")
|
||
|
if [ -n "$FILES" ]
|
||
|
then
|
||
|
dotnet format ./bitwarden-server.sln --no-restore --include $FILES
|
||
|
echo "$FILES" | xargs git add
|
||
|
fi
|