diff options
author | Petr Mladek <pmladek@suse.cz> | 2010-11-18 20:39:50 +0100 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2010-11-18 20:39:50 +0100 |
commit | 7d95994e4aa4a4e00439a786226c87998a15450e (patch) | |
tree | efc43cbbb10a86e48211f548c2237878d0bb64ff /solenv | |
parent | f15dd3db876d0028f0b8b618f854eb7856bfcb0c (diff) |
Do not mention date in the downlaod tarball name
it was to long; version is enough
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/download.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/solenv/bin/modules/installer/download.pm b/solenv/bin/modules/installer/download.pm index f300226589d4..c1537d17111b 100644 --- a/solenv/bin/modules/installer/download.pm +++ b/solenv/bin/modules/installer/download.pm @@ -778,9 +778,7 @@ sub get_current_version ############################################################################################### # Setting the download file name # Syntax: -# (PRODUCTNAME)_(VERSION)_(TIMESTAMP)_(OS)_(ARCH)_(INSTALLTYPE)_(LANGUAGE).(FILEEXTENSION) -# Rules: -# Timestamp only for Beta and Release Candidate +# (PRODUCTNAME)_(VERSION)_(OS)_(ARCH)_(INSTALLTYPE)_(LANGUAGE).(FILEEXTENSION) ############################################################################################### sub set_download_filename @@ -789,7 +787,6 @@ sub set_download_filename my $start = get_downloadname_productname($allvariables); my $versionstring = get_download_version($allvariables); - my $date = set_date_string($allvariables); my $platform = get_download_platformname(); my $architecture = get_download_architecture(); my $type = get_install_type($allvariables); @@ -797,7 +794,7 @@ sub set_download_filename # Setting the extension happens automatically - my $filename = $start . "_" . $versionstring . "_" . $date . "_" . $platform . "_" . $architecture . "_" . $type . "_" . $language; + my $filename = $start . "_" . $versionstring . "_" . "_" . $platform . "_" . $architecture . "_" . $type . "_" . $language; $filename =~ s/\_\_/\_/g; # necessary, if $versionstring or $platform or $language are empty $filename =~ s/\_\s*$//; # necessary, if $language and $addon are empty |