diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-12 16:30:05 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-12 16:30:05 +0100 |
commit | c9696e233389f1f896dc70076cfc03f14f8a940a (patch) | |
tree | 6d5c6add00e7cb641ef476522144e9c2794373cb /mk | |
parent | 23913bb8d2aa80452c381086b7513587badcd1e4 (diff) |
lib.sh: move xbmkget() to git.sh
in cbmk, it's only used from there.
in lbmk, it's also used from vendor.sh.
however, i plan to further expand git.sh at
some point, tidying it up so that git cloning
is also done from xbmkget, with dlop=git and
git.sh would then be renamed to get.sh
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'mk')
-rwxr-xr-x | mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,6 +17,7 @@ fi . "include/mrc.sh" . "include/rom.sh" . "include/release.sh" +. "include/git.sh" main() { @@ -34,7 +35,6 @@ main() main "$@" || exit 0 -. "include/git.sh" . "include/tree.sh" trees "$@" || exit 0 |