Changeset 2091 in ProjectBuilder for devel/pb-modules
- Timestamp:
- Jun 1, 2016, 6:29:31 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/lib/ProjectBuilder/Env.pm
r2084 r2091 328 328 # transform in full path if relative 329 329 $ENV{'PBROOTDIR'} = "$ENV{'PBCONFDIR'}/$ENV{'PBROOTDIR'}" if ($ENV{'PBROOTDIR'} !~ /^\//); 330 # If git, then versions are in branch not in dirs .331 $ENV{'PBROOTDIR'} = "$ENV{'PBCONFDIR'}" if ( $scheme =~ /^git/);330 # If git, then versions are in branch not in dirs, except for git+svn 331 $ENV{'PBROOTDIR'} = "$ENV{'PBCONFDIR'}" if (($scheme =~ /^git/) && ($scheme =~ /^svn/)); 332 332 pb_mkdir_p($ENV{'PBROOTDIR'}) if (defined $pbinit); 333 333 die "$ENV{'PBROOTDIR'} is not a directory" if (not -d $ENV{'PBROOTDIR'});
Note:
See TracChangeset
for help on using the changeset viewer.