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:
Zach Brown 2016-11-11 13:57:09 -06:00
parent d7276f6ffd
commit 65e3df5cf4
No known key found for this signature in database
GPG Key ID: CC9DA35FC5450B76
1 changed files with 3 additions and 3 deletions

View File

@ -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^
)