This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Redirect 'git fetch' output to log#7312
Merged
Merged
Conversation
Much of the output from 'git fetch' is to stderr, so it should also be redirected to the log file. The original implementation using &>> was added to Bash in version 4, so to ensure that this script works on OS X, an alternative syntax is used.
Member
|
@naamunds please make sure you test it in Linux and OS X |
Member
Author
|
@maririos I verified that it works as expected in both Ubuntu and OS X. |
Member
|
Cool. Thanks Nate. |
Member
|
@dotnet-bot test outerloop Ubuntu14.04 debug |
Member
|
I just triggered and outerloop run as I want to make sure that the ./build.sh flow on the build machines are not broken by this. |
Member
|
If you have already tested it for Ubuntu then there is no need for the outerloop run to finish. LGTM |
picenka21
pushed a commit
to picenka21/runtime
that referenced
this pull request
Feb 18, 2022
Redirect 'git fetch' output to log Commit migrated from dotnet/corefx@77f0b11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Much of the output from 'git fetch' is to stderr, so it should also be
redirected to the log file. The original implementation using &>> was
added to Bash in version 4, so to ensure that this script works on OS X,
an alternative syntax is used.
cc: @maririos @joperezr