3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 04:20:04 +01:00

Add option to suppress normal output of 'makePatches' so

it only outputs when a patch is changed or created.
Dieser Commit ist enthalten in:
Senmori 2018-09-10 06:00:14 -04:00
Ursprung 7033f180e0
Commit b6bf6aa3ba

Datei anzeigen

@ -7,10 +7,23 @@ then
fi
cb=src/main/java/net/minecraft/server
nms="$1/net/minecraft/server"
show_diff_msg=true
if [ $# -ge 2 ]
then
show_diff_msg=$2
if [ "$show_diff_msg" = false ]
then
echo "Suppressing normal output. Will only output for changed or created patches."
fi
fi
for file in $(/bin/ls $cb)
do
echo "Diffing $file"
if [ "$show_diff_msg" = true ]
then
echo "Diffing $file"
fi
sed -i 's/\r//' "$nms/$file"
sed -i 's/\r//' "$cb/$file"
outName=$(echo nms-patches/"$(echo $file | cut -d. -f1)".patch)