diff options
author | Tim Retout <tim@retout.co.uk> | 2012-09-27 18:39:21 +0100 |
---|---|---|
committer | Tim Retout <tim@retout.co.uk> | 2012-09-27 19:24:53 +0100 |
commit | b45263ad292801fd4b32a2f5183508cf4ad7f885 (patch) | |
tree | 8f61730acb2b6319da66c682062d7080877427f8 /solenv/bin/modules | |
parent | 1f48c56387fa95bc52e88512f82bc5b5436d7c4c (diff) |
installer::worker: Hide save_patchlist_file
Change-Id: If871ef19e81664185247809bd3e5d53e756a8c0d
Diffstat (limited to 'solenv/bin/modules')
-rw-r--r-- | solenv/bin/modules/installer/worker.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/modules/installer/worker.pm b/solenv/bin/modules/installer/worker.pm index cb205b434dc1..b6a19593e002 100644 --- a/solenv/bin/modules/installer/worker.pm +++ b/solenv/bin/modules/installer/worker.pm @@ -99,7 +99,7 @@ sub create_nopatchlist # Saving the patchlist file ######################################### -sub save_patchlist_file +sub _save_patchlist_file { my ($installlogdir, $patchlistfilename) = @_; @@ -221,7 +221,7 @@ sub analyze_and_save_logfile installer::files::save_file($installlogdir . $installer::globals::separator . $numberedlogfilename, \@installer::globals::logfileinfo); # Saving the list of patchfiles in a patchlist directory in the install directory - if (( $installer::globals::patch ) || ( $installer::globals::creating_windows_installer_patch )) { installer::worker::save_patchlist_file($installlogdir, $numberedlogfilename); } + if (( $installer::globals::patch ) || ( $installer::globals::creating_windows_installer_patch )) { _save_patchlist_file($installlogdir, $numberedlogfilename); } if ( $installer::globals::creating_windows_installer_patch ) { $installer::globals::creating_windows_installer_patch = 0; } |