Fix WIP grub symlink path depth (3 levels, not 4)

The symlink from recipes/wip/services/grub was using ../../../../local/
which goes above the repo root. Fixed to ../../../local/ which correctly
resolves from recipes/wip/services/ to local/recipes/core/grub.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-17 21:49:39 +01:00
parent 4d9e5ed59e
commit 3fb2d55171
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ if [ -d "recipes/wip/services/grub" ] && [ ! -L "recipes/wip/services/grub" ]; t
rm -rf "recipes/wip/services/grub" rm -rf "recipes/wip/services/grub"
fi fi
if [ ! -e "recipes/wip/services/grub" ]; then if [ ! -e "recipes/wip/services/grub" ]; then
symlink "../../../../local/recipes/core/grub" "recipes/wip/services/grub" symlink "../../../local/recipes/core/grub" "recipes/wip/services/grub"
fi fi
# Wayland additions # Wayland additions
+1 -1
View File
@@ -1 +1 @@
../../../../local/recipes/core/grub ../../../local/recipes/core/grub