summaryrefslogtreecommitdiffstats
path: root/applyPatches.sh
diff options
context:
space:
mode:
author0x277F <0x277F@gmail.com>2014-12-24 17:24:24 -0700
committerThinkofdeath <thinkofdeath@spigotmc.org>2015-02-07 10:59:52 +0000
commite81edfc7251b6c7cb19f49f1c53da5b29f5cef5b (patch)
tree6cb31a47ab73b0051b0e692945cb8fce0924d9c6 /applyPatches.sh
parent2c31a4b409f7958d86a38eab2ca0556d16351636 (diff)
downloadcraftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar
craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar.gz
craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar.lz
craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.tar.xz
craftbukkit-e81edfc7251b6c7cb19f49f1c53da5b29f5cef5b.zip
Update applyPatches to remove extra messages
Diffstat (limited to 'applyPatches.sh')
-rwxr-xr-xapplyPatches.sh6
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