mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 15:00:13 +01:00
Remove log redirection in CB init script
This section seems to be a relatively common source of errors. We may as well be as verbose as the command output, at least for this section.
This commit is contained in:
parent
f3fd0471f2
commit
8fd92641f7
1 changed files with 3 additions and 3 deletions
|
@ -42,11 +42,11 @@ do
|
|||
"$patch" -s -d src/main/java/ "net/minecraft/server/$file" < "$patchFile"
|
||||
done
|
||||
|
||||
git add src >/dev/null 2>&1
|
||||
git add src
|
||||
# We don't need to sign an automated commit
|
||||
# All it does is make you input your key passphrase mid-patch
|
||||
git config commit.gpgsign false
|
||||
git commit -m "CraftBukkit $ $(date)" --author="Auto <auto@mated.null>" >/dev/null 2>&1
|
||||
git commit -m "CraftBukkit $ $(date)" --author="Auto <auto@mated.null>"
|
||||
enableCommitSigningIfNeeded
|
||||
git checkout -f HEAD^ >/dev/null 2>&1
|
||||
git checkout -f HEAD^
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue