From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50714) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WOVIT-0000Sf-Fr for qemu-devel@nongnu.org; Fri, 14 Mar 2014 12:49:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WOVIO-00037A-Je for qemu-devel@nongnu.org; Fri, 14 Mar 2014 12:49:25 -0400 From: Cole Robinson Date: Fri, 14 Mar 2014 12:49:13 -0400 Message-Id: <1493d560c83eef5eefe313cb6b4a1d17985a2471.1394815720.git.crobinso@redhat.com> Subject: [Qemu-devel] [PATCH v2 for-2.0] scripts/make-release: Don't distribute .git directories List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial , Peter Maydell , Anthony Liguori , Cole Robinson [crobinso@localhost qemu-2.0.0-rc0]$ find . -name .git ./dtc/.git ./pixman/.git This is already done for the rom submodules. https://bugs.launchpad.net/qemu/+bug/1224414 Signed-off-by: Cole Robinson --- v2: pixman/*.git -> pixman/.git for consistency scripts/make-release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-release b/scripts/make-release index 196c755..186358d 100755 --- a/scripts/make-release +++ b/scripts/make-release @@ -18,7 +18,7 @@ git clone "${src}" ${destination} pushd ${destination} git checkout "v${version}" git submodule update --init -rm -rf .git roms/*/.git +rm -rf .git roms/*/.git dtc/.git pixman/.git popd tar cfj ${destination}.tar.bz2 ${destination} rm -rf ${destination} -- 1.8.5.3