From c3ac69a030652f2dcb08e0a8764c3d6e2e960e69 Mon Sep 17 00:00:00 2001 From: Silthus Date: Fri, 14 Dec 2018 11:31:46 +0100 Subject: [PATCH] fix(minecraft-server): typo from testing - change txt to jar --- minecraft-server/start-minecraftFinalSetup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minecraft-server/start-minecraftFinalSetup b/minecraft-server/start-minecraftFinalSetup index 06b45a55..a568845f 100755 --- a/minecraft-server/start-minecraftFinalSetup +++ b/minecraft-server/start-minecraftFinalSetup @@ -59,7 +59,7 @@ if [ "$TYPE" = "SPIGOT" ]; then cp -r /plugins /data # Copy plugins over using rsync to allow deeply nested updates of plugins # only updates files if the source file is newer and print updated files - rsync -a --out-format="update:%f:Last Modified %M" --prune-empty-dirs --include '*/' --include '*.txt' --exclude '*' --update /plugins /data/plugins + rsync -a --out-format="update:%f:Last Modified %M" --prune-empty-dirs --include '*/' --include '*.jar' --exclude '*' --update /plugins /data/plugins fi fi