mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-03 18:43:39 +00:00
* Fix response to /invite to match the format expected by synapse * gb vendor update github.com/matrix-org/gomatrixserverlib * Use gomatrixserverlib.RespInvite * gb vendor update github.com/matrix-org/gomatrixserverlib
18 lines
323 B
Bash
18 lines
323 B
Bash
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
echo "Installing lint search engine..."
|
|
go get github.com/alecthomas/gometalinter/
|
|
gometalinter --config=linter.json --install --update
|
|
|
|
echo "Looking for lint..."
|
|
gometalinter --config=linter.json
|
|
|
|
echo "Double checking spelling..."
|
|
misspell -error src *.md
|
|
|
|
echo "Testing..."
|
|
go test
|
|
|
|
echo "Done!"
|