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.
This commit is contained in:
2026-04-17 21:49:39 +01:00
parent a03483c956
commit f522c8fcff
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"
fi
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
# Wayland additions
+1 -1
View File
@@ -1 +1 @@
../../../../local/recipes/core/grub
../../../local/recipes/core/grub