diff options
author | Erich Eckner <git@eckner.net> | 2019-08-08 08:15:48 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-08-08 08:20:00 +0200 |
commit | 9ff726e961142f73593895f858cf0d40cbff6c59 (patch) | |
tree | f525f03b84b8afe48a53cf05ec5a3fca07820ad9 | |
parent | ff57fff0ea0d2f0205082f73d124850c40b112d4 (diff) | |
download | builder-9ff726e961142f73593895f858cf0d40cbff6c59.tar.xz |
bin/get-package-updates: ignore apparent deletions due to renames in blacklisting
-rwxr-xr-x | bin/get-package-updates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates index 2b07520..6f10c39 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -309,7 +309,7 @@ echo 'Check modified packages from the last update, and put them to the build li mysql_join_upstream_repositories_git_repositories printf ' WHERE `package_sources`.`pkgbase` IN (' # shellcheck disable=SC2154 - git -C "${repo_paths__archlinux32}" diff --no-renames --name-status "${old_repo_revisions__archlinux32}" "${new_repo_revisions__archlinux32}" -- 'blacklist' | \ + git -C "${repo_paths__archlinux32}" diff --name-status "${old_repo_revisions__archlinux32}" "${new_repo_revisions__archlinux32}" -- 'blacklist' | \ sed ' s@^D\tblacklist/[^/]\+/[^/]\+/@@ t |