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

[dev] Make init script use different author names

Lets us differentiate whats Vanilla and whats from CB at a glance in IJ.
Dieser Commit ist enthalten in:
Zach Brown 2019-03-06 00:14:07 -05:00
Ursprung 2c9924816f
Commit 9fdcbf5c9b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: CC9DA35FC5450B76

Datei anzeigen

@ -29,7 +29,7 @@ do
cp "$nms/$file" "$cb/$file"
done
$gitcmd add src
$gitcmd commit -m "Minecraft $ $(date)" --author="Auto <auto@mated.null>"
$gitcmd commit -m "Minecraft $ $(date)" --author="Vanilla <auto@mated.null>"
# apply patches
for file in $(ls nms-patches)
@ -46,6 +46,6 @@ do
done
$gitcmd add src
$gitcmd commit -m "CraftBukkit $ $(date)" --author="Auto <auto@mated.null>"
$gitcmd commit -m "CraftBukkit $ $(date)" --author="CraftBukkit <auto@mated.null>"
$gitcmd checkout -f HEAD~2
)