1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-29 23:17:32 +02:00

Remove redundant semicolon

This commit is contained in:
Dawid Dziurla 2020-03-20 14:39:34 +01:00 committed by Jesse Duffield
parent 59b0e2d70a
commit b5c4f78e9d

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: |