]> Git Repo - qemu.git/commitdiff
scripts/make-release: Don't distribute .git directories
authorCole Robinson <[email protected]>
Fri, 14 Mar 2014 16:49:13 +0000 (12:49 -0400)
committerMichael Tokarev <[email protected]>
Sat, 15 Mar 2014 09:54:18 +0000 (13:54 +0400)
[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 <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
scripts/make-release

index 196c755f5707bb8549f387b75f6868587e612a21..186358dc7e95a4a41086c0fd084e751d49492e98 100755 (executable)
@@ -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}
This page took 0.023511 seconds and 4 git commands to generate.