summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-07 16:54:05 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-07 16:54:05 +0100
commit05d301bdeeacc6bdf55a6db1ca4e55c495315606 (patch)
tree0fa35bbad1084b069fa22c3bfc6d83883980a37f /include
parent7e15859be6b374ebc4a53a967779dca5afabd762 (diff)
git.sh: fix submodule path
i accidentally cloned to tmpdir rather than tmpgit oops! Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rwxr-xr-xinclude/git.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git.sh b/include/git.sh
index 29739e27..63300fe8 100755
--- a/include/git.sh
+++ b/include/git.sh
@@ -125,7 +125,7 @@ fetch_submodule()
rm -Rf "$tmpgit/$1" || $err "!rm '$mdir' '$1'"
- tmpclone "$subrepo" "$subrepo_bkup" "$tmpdir/$1" "$subrev" \
+ tmpclone "$subrepo" "$subrepo_bkup" "$tmpgit/$1" "$subrev" \
"$mdir/${1##*/}/patches"
}