diff options
author | Zach Brown <[email protected]> | 2016-11-11 13:57:09 -0600 |
---|---|---|
committer | Zach Brown <[email protected]> | 2016-11-11 13:57:09 -0600 |
commit | 65e3df5cf44cc61130490f7017a883591e16dac8 (patch) | |
tree | 7417fb6f4ff5755b9b868298d6a76353542ed2aa | |
parent | d7276f6ffd6508c485a17dc3d4df743223e5de82 (diff) | |
download | Paper-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-x | scripts/init.sh | 6 |
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^ ) |