1
0
mirror of https://github.com/matrix-org/dendrite.git synced 2024-06-20 15:57:12 +00:00

Move files back if linting fails (#810)

This commit is contained in:
Andrew Morgan 2019-12-25 18:14:58 +00:00 committed by GitHub
parent b34fce0d85
commit dc25fb6837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,8 +29,15 @@ echo "Installing golangci-lint..."
cp go.mod go.mod.bak && cp go.sum go.sum.bak
go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.19.1
# Run linting
echo "Looking for lint..."
golangci-lint run $args
# Capture exit code to ensure go.{mod,sum} is restored before exiting
exit_code=0
golangci-lint run $args || exit_code=1
# Restore go.{mod,sum}
mv go.mod.bak go.mod && mv go.sum.bak go.sum
exit $exit_code