Remove binaries

This commit is contained in:
Jimmy 2021-01-04 21:38:36 +13:00
parent 80f5be957b
commit 3508e16c64
4 changed files with 5 additions and 20 deletions

20
.gitignore vendored
View File

@ -1,18 +1,2 @@
# ---> Go
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
server/*
server/*
bin/*

BIN
bin/cmd

Binary file not shown.

BIN
bin/main

Binary file not shown.

View File

@ -1,5 +1,6 @@
#!/bin/sh
go build -o bin/main src/main.go
go build -o bin/cmd src/cmd.go
mkdir bin && \
go build -o bin/main src/main.go && \
go build -o bin/cmd src/cmd.go && \
sudo docker build -t magmise/minecraft .