Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 741 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 741 Bytes

Minecraft-Server-Downloader

A little tool written in go for fetching the most recent Minecraft Java Edition server jar

main build

Usage

Simply run the mc-server-downloader file and it will fetch the most recent Minecraft Java Edition server release version to the current directory.

Building

go build ./cmd/mc-server-downloader

OS Specific builds


Windows

GOOS=windows GOARCH=amd64 go build ./cmd/mc-server-downloader

Mac M1

GOOS=darwin GOARCH=arm64 go build ./cmd/mc-server-downloader

Linux

GOOS=linux GOARCH=amd64 go build ./cmd/mc-server-downloader