aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorZach Brown <[email protected]>2016-11-11 13:57:09 -0600
committerZach Brown <[email protected]>2016-11-11 13:57:09 -0600
commit65e3df5cf44cc61130490f7017a883591e16dac8 (patch)
tree7417fb6f4ff5755b9b868298d6a76353542ed2aa
parentd7276f6ffd6508c485a17dc3d4df743223e5de82 (diff)
downloadPaper-65e3df5cf44cc61130490f7017a883591e16dac8.tar.gz
Paper-65e3df5cf44cc61130490f7017a883591e16dac8.zip
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.
-rwxr-xr-xscripts/init.sh6
1 files 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 <[email protected]>" >/dev/null 2>&1
+git commit -m "CraftBukkit $ $(date)" --author="Auto <[email protected]>"
enableCommitSigningIfNeeded
-git checkout -f HEAD^ >/dev/null 2>&1
+git checkout -f HEAD^
)