Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2014-03-27 20:14:19 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2014-03-27 20:14:19 +0400
commitb2529590e2c4019b5f2c8eb308326f7f06b5aafa (patch)
tree155506eeed3ff04e1d8a465b8dea7e947df1b835 /scripts
parentc03d8fcc731b0279bf9f23113bbc479effc3df23 (diff)
Missed DIST dependency on mkini.sh results.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/release.pl b/scripts/release.pl
index 282914ebd..22dce2b44 100755
--- a/scripts/release.pl
+++ b/scripts/release.pl
@@ -8,6 +8,9 @@ use POSIX;
my $ver;
system("rm mumble-*");
+chdir("scripts");
+system("bash mkini.sh");
+chdir("..");
if ($#ARGV < 0) {
open(F, "git describe origin/master|") or croak "Failed to get version string";