Changeset 1907 in ProjectBuilder for devel/pb/lib/ProjectBuilder/CMS.pm


Ignore:
Timestamp:
Oct 10, 2014, 11:32:12 AM (10 years ago)
Author:
Bruno Cornec
Message:
Fix some default initializations (
undef e.g.)
  • VE.pm doesn't need to have pbstep (use pbforce simply)
  • Fix sbx2setupve in a docker context
  • Add entries for prepve|vm|rm
  • Move sandbox management into send2target so that all files to process are managed here
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/lib/ProjectBuilder/CMS.pm

    r1896 r1907  
    6262sub pb_cms_init {
    6363
    64 my $pbinit = shift || undef;
    65 my $param = shift || undef;
     64my $pbinit = shift;
     65my $param = shift;
    6666
    6767my ($pburl) = pb_conf_get("pburl");
     
    162162
    163163my @pkgs = ();
    164 my $defpkgdir = shift || undef;
    165 my $extpkgdir = shift || undef;
     164my $defpkgdir = shift;
     165my $extpkgdir = shift;
    166166
    167167# Get packages list
     
    188188sub pb_cms_get_real_pkg {
    189189
    190 my $pbpkg = shift || undef;
     190my $pbpkg = shift;
    191191my $dtype = shift;
    192192my $pbpkgreal = $pbpkg;
     
    285285my $chglog = shift;
    286286my $authors = shift;
    287 my $testver = shift || undef;
     287my $testver = shift;
    288288
    289289pb_cms_create_authors($authors,$dest,$scheme);
Note: See TracChangeset for help on using the changeset viewer.