From c294eeca9a70ac0dc4f21cdf4f8cf3c284d9be27 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 7 Jun 2025 20:24:53 -0300 Subject: [PATCH] Improve the myfiles recipe script --- recipes/other/myfiles/recipe.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/other/myfiles/recipe.toml b/recipes/other/myfiles/recipe.toml index 2b5bbf4a..201335c7 100644 --- a/recipes/other/myfiles/recipe.toml +++ b/recipes/other/myfiles/recipe.toml @@ -1,6 +1,6 @@ [build] template = "custom" script = """ -mkdir -pv "${COOKBOOK_STAGE}"/home/user -cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}"/home/user +mkdir -pv "${COOKBOOK_STAGE}/home/user" +cp -rv "${COOKBOOK_SOURCE}/*" "${COOKBOOK_STAGE}/home/user" """