1
0
mirror of https://github.com/mgerb/ServerStatus synced 2026-01-10 19:22:49 +00:00

added role notification configuration

This commit is contained in:
2017-01-17 21:29:53 +01:00
parent 72f06fe031
commit c03184e422
8 changed files with 26 additions and 9 deletions

View File

@@ -1,8 +1,16 @@
run:
@go run ./src/main.go
build:
@rm -rf ./dist
@GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./src/main.go
linux:
@go build -o ./dist/ServerStatus-linux ./src/main.go
@cp config.template.json ./dist/config.json
windows:
@GOOS=windows GOARCH=386 go build -o ./dist/ServerStatus-windows.exe ./src/main.go
clean:
@rm -rf ./dist
copyfiles:
@cp config.template.json ./dist/config.json
all: linux windows copyfiles