1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:57:34 +00:00

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.
This commit is contained in:
Andreas Kling 2019-12-19 18:49:52 +01:00
parent 0bc89df3ad
commit cb6734c5e7

View file

@ -54,10 +54,10 @@ pushd "$DIR/Tarballs"
tar -xf ${BINUTILS_PKG} tar -xf ${BINUTILS_PKG}
pushd ${BINUTILS_NAME} pushd ${BINUTILS_NAME}
git init git init >/dev/null
git add . git add . >/dev/null
git commit -am "BASE" git commit -am "BASE" >/dev/null
git apply "$DIR"/Patches/binutils.patch git apply "$DIR"/Patches/binutils.patch >/dev/null
popd popd
else else
echo "Skipped extracting binutils" echo "Skipped extracting binutils"
@ -68,10 +68,10 @@ pushd "$DIR/Tarballs"
tar -xf $GCC_PKG tar -xf $GCC_PKG
pushd $GCC_NAME pushd $GCC_NAME
git init git init >/dev/null
git add . git add . >/dev/null
git commit -am "BASE" git commit -am "BASE" >/dev/null
git apply "$DIR"/Patches/gcc.patch git apply "$DIR"/Patches/gcc.patch >/dev/null
popd popd
else else
echo "Skipped extracting gcc" echo "Skipped extracting gcc"