From 6f13b6a05dccde2fddd080b604f8c3c143f56e85 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Fri, 20 Jun 2025 15:35:26 -0300 Subject: [PATCH] Fix the myfiles recipe script --- recipes/other/myfiles/recipe.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/other/myfiles/recipe.toml b/recipes/other/myfiles/recipe.toml index 201335c75..3cb6ba09a 100644 --- a/recipes/other/myfiles/recipe.toml +++ b/recipes/other/myfiles/recipe.toml @@ -2,5 +2,5 @@ template = "custom" script = """ mkdir -pv "${COOKBOOK_STAGE}/home/user" -cp -rv "${COOKBOOK_SOURCE}/*" "${COOKBOOK_STAGE}/home/user" +cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/home/user" """