Changeset 2266 in ProjectBuilder
- Timestamp:
- Aug 30, 2017, 5:07:47 PM (7 years ago)
- Location:
- devel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/lib/ProjectBuilder/Conf.pm
r2264 r2266 19 19 use ProjectBuilder::Base; 20 20 use ProjectBuilder::Version; 21 #use YAML;21 use ProjectBuilder::VCS; 22 22 23 23 # Inherit from the "Exporter" module which handles exporting functions. … … 594 594 close(ORIG); 595 595 close(DEST); 596 # Adding this new file to VCS (not removing the previous one) 597 my ($pburl) = pb_conf_get("pburl"); 598 my ($scheme, $account, $host, $port, $path) = pb_get_uri($pburl->{$ENV{'PBPROJ'}}); 599 pb_vcs_add_if_not_in($scheme,$dest); 596 600 return(); 597 601 } -
devel/pb/lib/ProjectBuilder/Filter.pm
r2263 r2266 96 96 $fyml =~ s/\.pbf/.yml/; 97 97 pb_conf_update_v0($f,$fyml); 98 my ($pburl) = pb_conf_get("pburl");99 my ($scheme, $account, $host, $port, $path) = pb_get_uri($pburl->{$ENV{'PBPROJ'}});100 pb_vcs_add_if_not_in($scheme,$fyml);101 98 push(@ffiles, $fyml); 102 99 }
Note:
See TracChangeset
for help on using the changeset viewer.