diff options
author | 0x277F <0x277F@gmail.com> | 2014-12-24 17:24:24 -0700 |
---|---|---|
committer | Thinkofdeath <thinkofdeath@spigotmc.org> | 2015-02-07 10:59:52 +0000 |
commit | e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b (patch) | |
tree | 6cb31a47ab73b0051b0e692945cb8fce0924d9c6 | |
parent | 2c31a4b409f7958d86a38eab2ca0556d16351636 (diff) | |
download | craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar.gz craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar.lz craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar.xz craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.zip |
Update applyPatches to remove extra messages
-rwxr-xr-x | applyPatches.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applyPatches.sh b/applyPatches.sh index 27936e73..59d1dda1 100755 --- a/applyPatches.sh +++ b/applyPatches.sh @@ -17,8 +17,8 @@ do file="$(echo $file | cut -d. -f1).java" echo "Patching $file < $patchFile" - sed -i 's/\r//' "$nms/$file" + sed -i 's/\r//' "$nms/$file" > /dev/null cp "$nms/$file" "$cb/$file" - patch -d src/main/java/ "net/minecraft/server/$file" < "$patchFile" -done
\ No newline at end of file + patch -d src/main/java/ "net/minecraft/server/$file" < "$patchFile" > /dev/null +done |