diff options
Diffstat (limited to 'solenv/bin/modules/installer/followme.pm')
-rw-r--r-- | solenv/bin/modules/installer/followme.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/solenv/bin/modules/installer/followme.pm b/solenv/bin/modules/installer/followme.pm index 535ac31588ff..f7b1890cf2a8 100644 --- a/solenv/bin/modules/installer/followme.pm +++ b/solenv/bin/modules/installer/followme.pm @@ -94,7 +94,6 @@ sub save_followme_info push(@filecontent, "globals:product: $installer::globals::product\n"); push(@filecontent, "globals:minor: $installer::globals::minor\n"); push(@filecontent, "globals:lastminor: $installer::globals::lastminor\n"); - push(@filecontent, "globals:nsisfilename: $installer::globals::nsisfilename\n"); # Saving file installer::files::save_file($downloadinfodir . $installer::globals::separator . $downloadinfofilename, \@filecontent); @@ -197,7 +196,6 @@ sub read_followme_info if ( $name eq "product" ) { $installer::globals::product = $value; } if ( $name eq "minor" ) { $installer::globals::minor = $value; } if ( $name eq "lastminor" ) { $installer::globals::lastminor = $value; } - if ( $name eq "nsisfilename" ) { $installer::globals::nsisfilename = $value; } } } |