ci: Improve script output
git-fetch's -q flag doesn't suppress warnings, so it's not a full replacement of the redirection that was removed in commit 8cefd919. Shut up the cryptic warning and replace it with a clearer log message instead. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/511
This commit is contained in:
parent
c062be25d6
commit
59559d5fc2
@ -17,10 +17,11 @@ if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]; then
|
||||
merge_request_branch=$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME
|
||||
|
||||
echo Looking for $merge_request_branch on remote ...
|
||||
if git fetch -q $merge_request_remote $merge_request_branch; then
|
||||
if git fetch -q $merge_request_remote $merge_request_branch 2>/dev/null; then
|
||||
mutter_target=FETCH_HEAD
|
||||
else
|
||||
mutter_target=origin/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|
||||
echo Using $mutter_target instead
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user