From 43d34fae21bd10c3abd030a8c880e379c5090730 Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Sun, 16 Mar 2025 16:39:10 +0100 Subject: [PATCH] ORAS download folder doesn't need Git safe --- lib/functions/compilation/kernel-git-oras.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/functions/compilation/kernel-git-oras.sh b/lib/functions/compilation/kernel-git-oras.sh index 9edcde7fe..9a45b7372 100644 --- a/lib/functions/compilation/kernel-git-oras.sh +++ b/lib/functions/compilation/kernel-git-oras.sh @@ -229,7 +229,8 @@ function kernel_prepare_bare_repo_from_oras_gitball() { display_alert "Kernel bare tree already exists" "${kernel_git_bare_tree}" "cachehit" fi - git_ensure_safe_directory "${kernel_git_bare_tree}" + # If we tell git to set this folder as safe it fails as not a git directory + # git_ensure_safe_directory "${kernel_git_bare_tree}" return 0 }