diff options
author | Leah Rowe <leah@libreboot.org> | 2024-07-19 00:31:57 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-07-19 00:37:11 +0100 |
commit | 2b50b3ea9a11b6ba2751ebb4237f0ea7288e5c81 (patch) | |
tree | 78272735f8a19e23c84ab720980d54d16f6244b0 /build | |
parent | 0e0b12a630d2f4846488233cf33fe4abaa185112 (diff) |
put cachedir in environmental variable
XBMK_CACHE is now used, instead of hardcoding cache/
this is exported initialised to cache/, if unset.
this means you can set your own directory, and it means
./update release will use the same directory.
this means bandwidth wastage is further avoided.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ build_release() cd "$srcdir" || $err "$vdir: !cd \"$srcdir\"" ./update trees -f rmgit . - x_ rm -Rf cache tmp + x_ rm -Rf tmp x_ mv src/docs docs ) || $err "can't create release files" |