diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/gitsm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/gitsm.py b/bitbake/lib/bb/fetch2/gitsm.py index f514aedaf1..c8bc54e6ab 100644 --- a/bitbake/lib/bb/fetch2/gitsm.py +++ b/bitbake/lib/bb/fetch2/gitsm.py | |||
@@ -122,7 +122,7 @@ class GitSM(Git): | |||
122 | url += ";name=%s" % module | 122 | url += ";name=%s" % module |
123 | url += ";subpath=%s" % module | 123 | url += ";subpath=%s" % module |
124 | url += ";nobranch=1" | 124 | url += ";nobranch=1" |
125 | url += ";lfs=%s" % self._need_lfs(ud) | 125 | url += ";lfs=%s" % ("1" if self._need_lfs(ud) else "0") |
126 | # Note that adding "user=" here to give credentials to the | 126 | # Note that adding "user=" here to give credentials to the |
127 | # submodule is not supported. Since using SRC_URI to give git:// | 127 | # submodule is not supported. Since using SRC_URI to give git:// |
128 | # URL a password is not supported, one have to use one of the | 128 | # URL a password is not supported, one have to use one of the |