Skip to content

Commit e673d86

Browse files
authored
Merge pull request #258 from yaakov-h/patch-1
Fix typo in version computation comment
2 parents ae610a7 + 7ddab3c commit e673d86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Perl/Dist/Strawberry/Step/OutputMSI.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ sub run {
6969

7070
# compute msi_version which has to be 3-numbers (otherwise major upgrade feature does not work)
7171
my ($v1, $v2, $v3, $v4) = split /\./, $self->global->{app_version};
72-
$v3 = $v3*1000 + $v4 if defined $v4; #turn 5.14.2.1 to 5.12.2001
72+
$v3 = $v3*1000 + $v4 if defined $v4; #turn 5.14.2.1 to 5.14.2001
7373

7474
# resolve values (only scalars) from config
7575
for (keys %{$self->{config}}) {
@@ -422,4 +422,4 @@ sub _detect_wix_dir {
422422
return;
423423
}
424424

425-
1;
425+
1;

0 commit comments

Comments
 (0)