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:
@@ -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 @@
|
|||||||
../../../../local/recipes/core/grub
|
../../../local/recipes/core/grub
|
||||||
Reference in New Issue
Block a user