mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-18 05:22:10 +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
d7276f6ffd
commit
65e3df5cf4
@ -42,11 +42,11 @@ do
|
|||||||
"$patch" -s -d src/main/java/ "net/minecraft/server/$file" < "$patchFile"
|
"$patch" -s -d src/main/java/ "net/minecraft/server/$file" < "$patchFile"
|
||||||
done
|
done
|
||||||
|
|
||||||
git add src >/dev/null 2>&1
|
git add src
|
||||||
# We don't need to sign an automated commit
|
# We don't need to sign an automated commit
|
||||||
# All it does is make you input your key passphrase mid-patch
|
# All it does is make you input your key passphrase mid-patch
|
||||||
git config commit.gpgsign false
|
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
|
enableCommitSigningIfNeeded
|
||||||
git checkout -f HEAD^ >/dev/null 2>&1
|
git checkout -f HEAD^
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user