From 8ce47c69d406a20b4264627419a56d78c9ca8482 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Thu, 27 Feb 2014 22:03:52 -0800 Subject: [PATCH] make-release: don't clean stuff from the zip Change-Id: I775926080f7cec04b3de4b574f78396613ae27c5 --- dev/make-release | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/dev/make-release b/dev/make-release index ebd931a3b..4aa3cc34b 100755 --- a/dev/make-release +++ b/dev/make-release @@ -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> };