Displaying 1 result from an estimated 1 matches for "scm_option".
Did you mean:
scm_options
2007 Feb 21
1
Problem with adding project with Subversion username and password
Hi,
I found that when adding a project with Subversion username and password,
e.g. cruise add <project-name> --url <URL> --username <username> --password
<password>
the username and password were not actually passed to svn command.
I printed out the content of scm_options in script/add_project file and
found that the values of username and password were empty.
Then I deleted the nil parameter (the first parameter) from opts.on(..) for
username and password:
i.e. opts.on("--username username", String, "Specify a username for
sourcecontrol") { |v...