index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-05-22 11:15:55 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-05-22 11:15:55 +0200 |
commit | 55d6ca33023ad8cbd1420a54ffc1e49e5453e942 (patch) | |
tree | f2fbaa70e80e5afedfd196886e2e4740cb08a162 /bin | |
parent | fd8427a467fa80915199ef1465ae07252bc704af (diff) |
-rwxr-xr-x | bin/build-packages | 6 |
diff --git a/bin/build-packages b/bin/build-packages index d1a14fc..485d19a 100755 --- a/bin/build-packages +++ b/bin/build-packages @@ -381,11 +381,7 @@ while [ "${count}" -ne 0 ] && \ tmp_dir=$(mktemp -d "${work_dir}/tmp.build-packages.XXXXXX") trap bail_out EXIT - if ! git_repo=$(find_repository_with_commit "${git_revision}") || \ - [ -z "${git_repo}" ] || \ - ! find_pkgbuilds "${package}" "${repository}" "${git_repo}" "${git_revision}" "${mod_git_revision}" || \ - ! extract_source_directory "${git_repo}" "${git_revision}" "${mod_git_revision}" "${tmp_dir}" "${sub_pkgrel}" || \ - ! apply_trunk_patch "${tmp_dir}" "${diff_source_dir}"; then + if ! extract_source_directory "${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 \ |