diff options
| -rw-r--r-- | include/git.sh | 9 | ||||
| -rw-r--r-- | include/lib.sh | 9 | 
2 files changed, 9 insertions, 9 deletions
| diff --git a/include/git.sh b/include/git.sh index 272a1af3..9be79527 100644 --- a/include/git.sh +++ b/include/git.sh @@ -66,6 +66,15 @@ git_prep()  	mv "$tmpgit" "$_loc" || $err "git_prep: !mv $tmpgit $_loc"  } +# return 0 if project is single-tree, otherwise 1 +# e.g. coreboot is multi-tree, so 1 +singletree() +{ +	for targetfile in "config/${1}/"*/target.cfg; do +		[ -e "$targetfile" ] && [ -f "$targetfile" ] && return 1; : +	done; : +} +  fetch_submodule()  {  	mcfgdir="$mdir/${1##*/}"; eval \ diff --git a/include/lib.sh b/include/lib.sh index dea015e0..f7d3e3b0 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -42,15 +42,6 @@ rmgit()  	) || $err "Cannot remove .git/.gitmodules in $1"  } -# return 0 if project is single-tree, otherwise 1 -# e.g. coreboot is multi-tree, so 1 -singletree() -{ -	for targetfile in "config/${1}/"*/target.cfg; do -		[ -e "$targetfile" ] && [ -f "$targetfile" ] && return 1; : -	done; : -} -  # can grab from the internet, or copy locally.  # if copying locally, it can only copy a file.  xbmkget() | 
