git.sh: download xtree *before*, not after
downloading it after means that if an error occurs when downloading the xtree project, the main project will still be there and nothing will mandate the downloading of the xtree project. whereas, if we grab the xtree project first, then the main project won't get saved to src/ this makes the build system a bit more resilient under fault conditions, but otherwise doesn't change behaviour. Signed-off-by: Leah Rowe <leah@libreboot.org>audit2-merge1
parent
14bba2d789
commit
8b1a54d19e
|
@ -56,6 +56,8 @@ fetch_project_repo()
|
|||
[ -z "${loc+x}" ] && $err "fetch_project_repo $project: loc not set"
|
||||
[ -z "${url+x}" ] && $err "fetch_project_repo $project: url not set"
|
||||
|
||||
[ -n "$xtree" ] && [ ! -d "src/coreboot/$xtree" ] && \
|
||||
x_ ./update trees -f coreboot "$xtree"
|
||||
[ -z "$depend" ] || for d in $depend ; do
|
||||
printf "'%s' needs dependency '%s'; grabbing '%s' now\n" \
|
||||
"$project" "$d" "$d"
|
||||
|
@ -172,8 +174,6 @@ move_repo()
|
|||
{
|
||||
[ "$1" = "${1%/*}" ] || x_ mkdir -p "${1%/*}"
|
||||
mv "$tmpgit" "$1" || $err "git_prep: !mv $tmpgit $1"
|
||||
[ -n "$xtree" ] && [ ! -d "src/coreboot/$xtree" ] && \
|
||||
x_ ./update trees -f coreboot "$xtree"; return 0
|
||||
}
|
||||
|
||||
# can delete from multi- and single-tree projects.
|
||||
|
|
Loading…
Reference in New Issue