make-release: don't clean stuff from the zip

Change-Id: I775926080f7cec04b3de4b574f78396613ae27c5
This commit is contained in:
Brad Fitzpatrick 2014-02-27 22:03:52 -08:00
parent ae048b06a2
commit 8ce47c69d4
1 changed files with 1 additions and 10 deletions

View File

@ -27,16 +27,7 @@ print $fh "$version\n";
close($fh);
system("git", "add", "VERSION") and die;
foreach my $d (qw{
.hackfests
website
clients/chrome
lib
old
}) {
system("git", "rm", "-r", $d) and die "Failed to git rm -r $d";
}
system("git", "commit", "-m", "Add VERSION file and clean tree for release $version") and die "Failed to commit";
system("git", "commit", "-m", "Add VERSION file on the $new_branch branch.") and die "Failed to commit";
system("git", "tag", $version) and die "Failed to tag";
my $commit = do { open(my $f, ".git/refs/tags/$version") or die; local $/; <$f> };