Changeset 2308 in ProjectBuilder for devel/pb-modules/lib/ProjectBuilder


Ignore:
Timestamp:
Sep 6, 2017, 8:05:00 PM (7 years ago)
Author:
Bruno Cornec
Message:

Fix vcs_compliant for git+ssh

the URL computed was removing a git+ssh scheme abusively IMO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb-modules/lib/ProjectBuilder/VCS.pm

    r2307 r2308  
    733733        # remove schema from `git+file:` and `git+dir:` urls
    734734        # TODO: handle query-parameters
    735         $uri =~ s/^git\+(file|dir|ssh):[\/]*//;
     735        $uri =~ s/^git\+(file|dir):[\/]*//;
    736736        # Expand potential env variable in it -- this is required due to the consistency check
    737737        $uri =~ s/(\$ENV.+\})/$1/eeg;
Note: See TracChangeset for help on using the changeset viewer.