Subversion Repositories DevTools

Rev

Rev 271 | Rev 311 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 271 Rev 297
Line 97... Line 97...
97
    #   User can provide a path to the svn utility
97
    #   User can provide a path to the svn utility
98
    #   It will be used if its present
98
    #   It will be used if its present
99
    #
99
    #
100
    ::EnvImportOptional('GBE_SVN_PATH', '');
100
    ::EnvImportOptional('GBE_SVN_PATH', '');
101
 
101
 
-
 
102
    #
-
 
103
    #   For some reason thats not clear these EnvVars must be used in this function
-
 
104
    #   for them to be available elsewhere.
-
 
105
    #
-
 
106
    #   No it doesn't make sence to me either
-
 
107
    #   Problem seen on Linx. Not investigated on others
-
 
108
    #
-
 
109
    Debug ("GBE_SVN_USERNAME", $::GBE_SVN_USERNAME);
-
 
110
    Debug ("GBE_SVN_PASSWORD", $::GBE_SVN_PASSWORD);
-
 
111
    Debug ("GBE_SVN_PATH", $::GBE_SVN_PATH);
-
 
112
 
-
 
113
 
102
    $stdmux = LocateProgInPath ( 'stdmux');
114
    $stdmux = LocateProgInPath ( 'stdmux');
103
    Error ("The JATS stdmux utility cannot be found" ) unless ( $stdmux );
115
    Error ("The JATS stdmux utility cannot be found" ) unless ( $stdmux );
104
 
116
 
105
    $svn = LocateProgInPath ( 'svn', '--All', '--Path=' . $::GBE_SVN_PATH );
117
    $svn = LocateProgInPath ( 'svn', '--All', '--Path=' . $::GBE_SVN_PATH );
106
    Error ("The svn utility cannot be found", "Configured Path: $GBE_SVN_PATH") unless ( $svn );
118
    Error ("The svn utility cannot be found", "Configured Path: $GBE_SVN_PATH") unless ( $svn );