From: Chris W. <la...@us...> - 2005-03-17 06:03:09
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Manage/Website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2677/Manage/Website Modified Files: Upgrade.pm Log Message: don't need to read packages when we're upgrading; and fix typo Index: Upgrade.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/Manage/Website/Upgrade.pm,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Upgrade.pm 8 Feb 2005 01:44:06 -0000 1.17 --- Upgrade.pm 17 Mar 2005 06:02:56 -0000 1.18 *************** *** 34,37 **** --- 34,42 ---- } + sub setup_task { + my ( $self ) = @_; + $self->_setup_context({ skip => 'read packages' }); + } + sub run_task { my ( $self ) = @_; *************** *** 50,54 **** my $brick = OpenInteract2::Brick->new( 'widgets' ); my $status = $brick->copy_all_resources_to( $website_dir ); ! $self->_set_file_copy_status( $status ); $self->notify_observers( progress => 'Widget copy complete' ); } --- 55,59 ---- my $brick = OpenInteract2::Brick->new( 'widgets' ); my $status = $brick->copy_all_resources_to( $website_dir ); ! $self->_set_copy_file_status( $status ); $self->notify_observers( progress => 'Widget copy complete' ); } |