diff options
author | Leah Rowe <leah@libreboot.org> | 2025-09-24 23:34:12 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-09-24 23:34:12 +0100 |
commit | 6bb4e2c72a98a7864bbd629c7adf804b09189d73 (patch) | |
tree | 3be205e2eb54d6261aa31bd7b284935c3d3f6663 /include | |
parent | dc722b5bb87d0c24269d57d09f917e9b1cb26fce (diff) |
init.sh: remove symlink check on XBMK_CACHE
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/init.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/init.sh b/include/init.sh index e1e436d5..7e9fca30 100644 --- a/include/init.sh +++ b/include/init.sh @@ -219,10 +219,6 @@ xbmk_parent_set_export() { export XBMK_CACHE="$xbmkpwd/cache" - if [ -L "$XBMK_CACHE" ] && [ "$XBMK_CACHE" = "$xbmkpwd/cache" ]; then - err "cachedir '$xbmkpwd/cache' is a symlink" \ - "xbmk_parent_set_export" "$@" - fi if [ -e "$XBMK_CACHE" ] && [ ! -d "$XBMK_CACHE" ]; then err "cachedir '$XBMK_CACHE' is a file" \ "xbmk_parent_set_export" "$@" |