From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8C2A1382C5 for ; Sat, 10 Mar 2018 15:04:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E5ABE0937; Sat, 10 Mar 2018 15:04:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2F253E0937 for ; Sat, 10 Mar 2018 15:04:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4962B335C09 for ; Sat, 10 Mar 2018 15:04:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9231421D for ; Sat, 10 Mar 2018 15:04:53 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1520694282.c85ac432678c09bcdc136237243b865561ff380f.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/rsync-generation/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/rsync-generation/update-rsync-master.sh X-VCS-Directories: scripts/rsync-generation/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: c85ac432678c09bcdc136237243b865561ff380f X-VCS-Branch: master Date: Sat, 10 Mar 2018 15:04:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 816bb12e-e0e8-4104-a728-ae3b5aced21b X-Archives-Hash: 63225ffeb4aadfd132721f502b9ad63c commit: c85ac432678c09bcdc136237243b865561ff380f Author: Fabian Groffen gentoo org> AuthorDate: Sat Mar 10 15:04:42 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Mar 10 15:04:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=c85ac432 scripts/rsync-generation/update-rsync-master: ensure deletes bump mtime scripts/rsync-generation/update-rsync-master.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/rsync-generation/update-rsync-master.sh b/scripts/rsync-generation/update-rsync-master.sh index 86a9a4773b..4c1febc2c9 100755 --- a/scripts/rsync-generation/update-rsync-master.sh +++ b/scripts/rsync-generation/update-rsync-master.sh @@ -78,6 +78,11 @@ apply_git_mtimes() { set -- ${line} files+=( $3 ) ;; + [D]*) + # in case a file is removed, ensure Manifest gets + # updated by touching a file which should be there + files+=( metadata.xml ) + ;; esac done }