mirror of https://github.com/perkeep/perkeep.git
make-release: don't clean stuff from the zip
Change-Id: I775926080f7cec04b3de4b574f78396613ae27c5
This commit is contained in:
parent
ae048b06a2
commit
8ce47c69d4
|
@ -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> };
|
||||
|
|
Loading…
Reference in New Issue