summaryrefslogtreecommitdiff
path: root/include/git.sh
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-01-01 12:41:43 +0000
committerLeah Rowe <leah@libreboot.org>2024-01-01 12:41:43 +0000
commite6953dc4f0bbae746c536b7dd0b67bc5fa7bc253 (patch)
treed6ca54e39dbf5c8c19e4a80808c812e48289b087 /include/git.sh
parentd819403a0b8fbbfce03774141404d6ffe3feee0e (diff)
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 <leah@libreboot.org>
Diffstat (limited to 'include/git.sh')
-rwxr-xr-xinclude/git.sh4
1 files changed, 0 insertions, 4 deletions
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