diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-05 01:04:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-05 01:04:25 +0100 |
commit | 23f98c29581e7d2cf5639e93fd89a6e64bec5635 (patch) | |
tree | 356b3a71d49b775312a3c16f55388fdc9806b818 /include/release.sh | |
parent | 1e488aae78d96eedcd80b9a10fa2e7fa6e374ec2 (diff) |
init.sh: explicitly create cache/
otherwise, an error occurs when doing ./mk release
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/release.sh')
-rw-r--r-- | include/release.sh | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/release.sh b/include/release.sh index 339ab3f5..8c89465e 100644 --- a/include/release.sh +++ b/include/release.sh @@ -64,9 +64,6 @@ prep_release() ( if [ "$1" != "tarball" ]; then x_ cd "$rsrc" - if [ ! -e "cache" ]; then - x_ ln -s "$XBMK_CACHE" "cache" - fi fi prep_release_$1 @@ -104,8 +101,8 @@ prep_release_tarball() --abbrev-commit > "$rsrc/CHANGELOG" || \ err "can't create '$rsrc/CHANGELOG'" "prep_release_tarball" "$@" - x_ rm -f "$rsrc/lock" "$rsrc/cache" - x_ rm -Rf "$rsrc/xbmkwd" "$rsrc/util/sbase" + x_ rm -f "$rsrc/lock" + x_ rm -Rf "$rsrc/xbmkwd" "$rsrc/util/sbase" "$rsrc/cache" x_ mv "$rsrc/util/sbase2" "$rsrc/util/sbase" ( |