mirror of
https://github.com/zoriya/cish.git
synced 2025-12-06 07:16:16 +00:00
7 lines
94 B
Bash
7 lines
94 B
Bash
#!/usr/bin/env bash
|
|
|
|
pkg add go
|
|
if [ "$(gofmt -s -l ./auth | wc -l)" -gt 0 ]; then
|
|
exit 1
|
|
fi
|