Commit 555a081f authored by Wayne Davison's avatar Wayne Davison

If "make gensend" fails, abort the script.

parent 513d3fd8
......@@ -41,6 +41,7 @@ if ($make_tar) {
close IN;
die "The checkout is not clean:\n", $status unless $status =~ /\nnothing to commit \(working directory clean\)/;
die "The checkout is not on the master branch.\n" unless $status =~ /^# On branch master\n/;
system "make $gen_target" and die "make $gen_target failed!\n";
my @extra_files;
open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n";
......@@ -56,7 +57,7 @@ if ($make_tar) {
close IN;
print "Creating $name.tar.gz\n";
system "make $gen_target; rsync -a @extra_files $name/";
system "rsync -a @extra_files $name/";
system "git archive --format=tar --prefix=$name/ HEAD | tar xf -";
system "support/git-set-file-times --prefix=$name/";
system "fakeroot tar czf $dest/$name.tar.gz $name; rm -rf $name";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment