summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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