From 65e3df5cf44cc61130490f7017a883591e16dac8 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 11 Nov 2016 13:57:09 -0600 Subject: [PATCH] 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. --- scripts/init.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/init.sh b/scripts/init.sh index 0de0ed43f6..ce1d01cb61 100755 --- a/scripts/init.sh +++ b/scripts/init.sh @@ -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 " >/dev/null 2>&1 +git commit -m "CraftBukkit $ $(date)" --author="Auto " enableCommitSigningIfNeeded -git checkout -f HEAD^ >/dev/null 2>&1 +git checkout -f HEAD^ )