1
0
mirror of https://github.com/stryan/mumble-discord-bridge.git synced 2024-07-03 03:15:13 -04:00
mumble-discord-bridge/Makefile
Tyler Stiene 33e3ea70a4 reliability improvements
die on mumble disconnect
drop packets if channel is full
2020-11-04 01:12:43 -05:00

13 lines
272 B
Makefile

GOFILES=main.go mumble.go discord.go
mumble-discord-bridge: $(GOFILES)
go build -o $@ $(GOFILES)
docker-latest:
docker build -t stieneee/mumble-discord-bridge:latest .
docker push stieneee/mumble-bridge-latest
clean:
rm mumble-discord-bridge
.PHONY: all push clean