Skip to content

Commit

Permalink
Fix auth bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xrow committed Aug 27, 2015
1 parent 6d58502 commit c5f1c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrow/eZCluster/Resources/environment.php
Expand Up @@ -323,7 +323,7 @@ public function setup()
$file = $this->dirtmp . "/build";
if (strpos($this->parameters["SCM"], 'svn') !== false) {
if (! is_dir($this->dirtmp . "/.svn")) {
$this->run("svn co --force --quiet --trust-server-cert --non-interactive --username ". $this->parameters["USER"]. " --password ". $this->parameters["PASSWORD"]. " " . $this->parameters["BRANCH"] . " " . $this->dirtmp);
$this->run("svn co --force --quiet --trust-server-cert --non-interactive --username ". $this->parameters["SVN_USER"] . " --password ". $this->parameters["SVN_PASS"]. " " . $this->parameters["BRANCH"] . " " . $this->dirtmp);
}
} elseif (strpos($this->parameters["SCM"], 'git') !== false) {

Expand Down

0 comments on commit c5f1c3b

Please sign in to comment.