mirror of
https://github.com/rclone/rclone.git
synced 2024-12-03 13:55:34 +01:00
8 lines
105 B
Bash
8 lines
105 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -n "$(gofmt -l .)" ]; then
|
||
|
echo "Go code is not formatted:"
|
||
|
gofmt -d .
|
||
|
exit 1
|
||
|
fi
|