From e6953dc4f0bbae746c536b7dd0b67bc5fa7bc253 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 1 Jan 2024 12:41:43 +0000 Subject: git.sh: clean up handling of tmp_git_dir delete it once once, and delete it much sooner, right at the start of script/update/trees main() Signed-off-by: Leah Rowe --- include/git.sh | 4 ---- 1 file changed, 4 deletions(-) (limited to 'include/git.sh') diff --git a/include/git.sh b/include/git.sh index 1942a53b..519ae4d3 100755 --- a/include/git.sh +++ b/include/git.sh @@ -5,7 +5,6 @@ # This file is only used by update/project/trees eval "$(setvars "" _target rev _xm loc url bkup_url depend patchfail)" -tmp_git_dir="${PWD}/tmp/gitclone" fetch_project_trees() { @@ -59,7 +58,6 @@ prepare_new_tree() { printf "Creating %s tree %s (%s)\n" "$project" "$tree" "$_target" - remkdir "${tmp_git_dir%/*}" cp -R "src/${project}/${project}" "${tmp_git_dir}" || \ err "prepare_new_tree ${project}/${tree}: can't make tmpclone" git_patch "$tmp_git_dir" "$PWD/$cfgsdir/$tree/patches" @@ -91,8 +89,6 @@ verify_config() clone_project() { - remkdir "${tmp_git_dir%/}" - loc="${loc#src/}" loc="src/${loc}" if [ -d "${loc}" ]; then -- cgit v1.2.1