mirror of
https://github.com/zoriya/cish.git
synced 2026-06-04 02:36:06 +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
|