build: only fetch "origin" as some remotes may not respond

This commit is contained in:
Franco Fichtner 2020-07-16 08:41:22 +02:00
parent 3a3d35f3ed
commit ea8344b0b8
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ git_fetch()
{
echo ">>> Fetching ${1}:"
git -C ${1} fetch --tags --prune --all
git -C ${1} fetch --tags --prune origin
}
git_clone()