diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-19 18:49:52 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-19 18:52:07 +0100 |
commit | cb6734c5e7c7ac6d5ece92e1cf073077a9323299 (patch) | |
tree | 935be3345a4e564e3b39c3251753be85517b4641 | |
parent | 0bc89df3adf3b7e759eb4a1f903519a458f22271 (diff) | |
download | serenity-cb6734c5e7c7ac6d5ece92e1cf073077a9323299.zip |
Toolchain: Redirect git command output to /dev/null
Travis is currently failing and whining about the log being too long.
It appears to be filling up with output from the git hackery.
-rwxr-xr-x | Toolchain/BuildIt.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index d236cff47b..aad52c31d5 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -54,10 +54,10 @@ pushd "$DIR/Tarballs" tar -xf ${BINUTILS_PKG} pushd ${BINUTILS_NAME} - git init - git add . - git commit -am "BASE" - git apply "$DIR"/Patches/binutils.patch + git init >/dev/null + git add . >/dev/null + git commit -am "BASE" >/dev/null + git apply "$DIR"/Patches/binutils.patch >/dev/null popd else echo "Skipped extracting binutils" @@ -68,10 +68,10 @@ pushd "$DIR/Tarballs" tar -xf $GCC_PKG pushd $GCC_NAME - git init - git add . - git commit -am "BASE" - git apply "$DIR"/Patches/gcc.patch + git init >/dev/null + git add . >/dev/null + git commit -am "BASE" >/dev/null + git apply "$DIR"/Patches/gcc.patch >/dev/null popd else echo "Skipped extracting gcc" |