mirror of
https://github.com/Smaug123/dotnet-classical-ciphers
synced 2025-10-05 04:28:42 +00:00
7 lines
154 B
Bash
7 lines
154 B
Bash
#!/bin/sh
|
|
|
|
if ! dotnet tool run fantomas --check -r . ; then
|
|
echo "Formatting incomplete. Consider running 'dotnet tool run fantomas -r .'"
|
|
exit 1
|
|
fi
|