mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +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:
parent
0bc89df3ad
commit
cb6734c5e7
Notes:
sideshowbarker
2024-07-19 10:48:33 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/cb6734c5e7c
1 changed files with 8 additions and 8 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue