Remove redundant semicolon

This commit is contained in:
Dawid Dziurla
2020-03-21 12:55:44 +11:00
committed by Jesse Duffield
parent 59b0e2d70a
commit b5c4f78e9d
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
if [ $(find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;|wc -l) -gt 0 ]; then
find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;
exit 1;
exit 1
fi
- name: Test code
run: |