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;