8 lines
145 B
Bash
Executable file
8 lines
145 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Normalize our environment.
|
|
cd $(dirname $0)/..
|
|
./scripts/setup.sh || exit 1
|
|
|
|
# Format the .NET code
|
|
dotnet format || exit 1
|