Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/bin/build-packages
diff options
context:
space:
mode:
authorErich Eckner <erich.eckner.ext@bestsecret.com>2023-05-23 11:55:06 +0200
committerErich Eckner <erich.eckner.ext@bestsecret.com>2023-05-23 11:55:06 +0200
commitf854bddd8e61faa6983e6e00c534579c9b8ee45d (patch)
tree40241e2e6f0d6a4542f47064b727bcf6bcdd7401 /bin/build-packages
parentd06a1fb2aa7a1087549b83b1869ac9cd5ae5d6a7 (diff)
fix source checkout in build-packages
* parameters of extract_source_directory were changed, but call was not adapted
Diffstat (limited to 'bin/build-packages')
-rwxr-xr-xbin/build-packages2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build-packages b/bin/build-packages
index 20cdb29..c587480 100755
--- a/bin/build-packages
+++ b/bin/build-packages
@@ -379,7 +379,7 @@ while [ "${count}" -ne 0 ] && \
tmp_dir=$(mktemp -d "${work_dir}/tmp.build-packages.XXXXXX")
trap bail_out EXIT
- if ! extract_source_directory "${repository}" "${git_revision}" "${mod_git_revision}" "${tmp_dir}" "${sub_pkgrel}"; then
+ if ! extract_source_directory "${package}" "${repository}" "${git_revision}" "${mod_git_revision}" "${tmp_dir}" "${sub_pkgrel}"; then
# report local failure (probably a missing commit) to build-master
# shellcheck disable=SC2029
ssh -o PasswordAuthentication=No \