From 3693d942978db3bf43775ae1b3c573a97cbab7bb Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Tue, 28 Feb 2017 22:14:41 +1030 Subject: [PATCH] Fix for new version variable name --- build-release.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-release.pl b/build-release.pl index cac4947..f62e800 100755 --- a/build-release.pl +++ b/build-release.pl @@ -7,7 +7,7 @@ open my $fh, "<", "dau.go" || die $!; my $version; while (<$fh>) { - $version = $1 if /^const\s+current_version.*?"([\d\.]+)"/; + $version = $1 if /^const\s+currentVersion.*?"([\d\.]+)"/; } close $fh;