mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 00:50:41 +01:00
Update applyPatches to remove extra messages
This commit is contained in:
parent
2c31a4b409
commit
e81edfc725
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
patch -d src/main/java/ "net/minecraft/server/$file" < "$patchFile" > /dev/null
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue