From a1c87cc78cae39fc05d5b15a225f6034c8401dbf Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Fri, 24 Apr 2015 18:31:27 -0400 Subject: [PATCH] Also generate eula.txt and ignore a bunch of stuff --- bukkit/.gitignore | 16 ++++++++++++++++ bukkit/Makefile | 5 ++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/bukkit/.gitignore b/bukkit/.gitignore index 4a0c0ab..029958e 100644 --- a/bukkit/.gitignore +++ b/bukkit/.gitignore @@ -1 +1,17 @@ craftbukkit.jar +banned-ips.json +banned-players.json +bukkit.yml +commands.yml +craftbukkit +eula.txt +help.yml +logs/ +ops.json +permissions.yml +server.properties +usercache.json +whitelist.json +world/ +world_nether/ +world_the_end/ diff --git a/bukkit/Makefile b/bukkit/Makefile index 2b806dd..2654ddc 100644 --- a/bukkit/Makefile +++ b/bukkit/Makefile @@ -5,8 +5,11 @@ CRAFTBUKKIT_VERSION := 1.8.3-R0.1-SNAPSHOT-latest all: deps .PHONY: deps -deps: craftbukkit.jar +deps: craftbukkit.jar eula.txt craftbukkit.jar: curl -SL --progress -o $@ \ http://tcpr.ca/download/craftbukkit/craftbukkit-$(CRAFTBUKKIT_VERSION).jar + +eula.txt: + echo "eula=true" > $@