diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-01 08:30:08 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-01 08:30:08 +0100 |
commit | b9662fbe3634af2946f0423a021c4f04c983c169 (patch) | |
tree | 564ffed7bdfe1ab734d5d15072e5dfe06e8b15a6 /script/handle/make/file | |
parent | 12b33eb8c18b37546599feec908b9acd829f0029 (diff) |
handle project downloads in main lbmk script
this means the unified /tmp handling is now provided for
in both the former "fetch" and "fetch_trees" script, which
are now (respectively):
./update project repo
./update project trees
if the fetch scripts weren't cleaning /tmp before, they
now are, because lbmk handles it
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/handle/make/file')
-rwxr-xr-x | script/handle/make/file | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/handle/make/file b/script/handle/make/file index 855ea1c4..dcb2fc6b 100755 --- a/script/handle/make/file +++ b/script/handle/make/file @@ -52,7 +52,7 @@ main() handle_dependencies() { - [ -d "${project}" ] || ./fetch "${project%/*}" || \ + [ -d "${project}" ] || ./update project repo "${project%/*}" || \ err "handle_dependencies: can't fetch ${project%/*}" [ -d "${project}" ] || \ err "handle_dependencies: ${project%/*} not downloaded" |