diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 4c7d388e16..eab76a10ad 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
@@ -509,7 +509,7 @@ class Git(FetchMethod): | |||
509 | if self._contains_lfs(ud, d, destdir): | 509 | if self._contains_lfs(ud, d, destdir): |
510 | if need_lfs and not self._find_git_lfs(d): | 510 | if need_lfs and not self._find_git_lfs(d): |
511 | raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or set lfs=0 to ignore it)" % (repourl)) | 511 | raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or set lfs=0 to ignore it)" % (repourl)) |
512 | else: | 512 | elif not need_lfs: |
513 | bb.note("Repository %s has LFS content but it is not being fetched" % (repourl)) | 513 | bb.note("Repository %s has LFS content but it is not being fetched" % (repourl)) |
514 | 514 | ||
515 | if not ud.nocheckout: | 515 | if not ud.nocheckout: |