You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/05/13 06:49:50 UTC

cordova-coho git commit: CB-11185 - add '--non-interactive --trust-server-cert' for svn checkout

Repository: cordova-coho
Updated Branches:
  refs/heads/master 9e1764277 -> de3c66638


CB-11185 - add '--non-interactive --trust-server-cert' for svn checkout

 This closes #118


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/de3c6663
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/de3c6663
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/de3c6663

Branch: refs/heads/master
Commit: de3c666384949997477aa0c84f073a18e6d724be
Parents: 9e17642
Author: Shazron Abdullah <sh...@gmail.com>
Authored: Sat Apr 30 20:57:29 2016 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Thu May 12 23:49:45 2016 -0700

----------------------------------------------------------------------
 src/repo-clone.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/de3c6663/src/repo-clone.js
----------------------------------------------------------------------
diff --git a/src/repo-clone.js b/src/repo-clone.js
index 6a85646..9b2e357 100644
--- a/src/repo-clone.js
+++ b/src/repo-clone.js
@@ -59,7 +59,7 @@ function *cloneRepos(repos, quiet, depth) {
             if(!quiet) print('Repo already cloned: ' + repo.repoName);
             numSkipped +=1 ;
         } else if (repo.svn) {
-            clonePromises.push(executil.execHelper(executil.ARGS('svn checkout ' + repo.svn + ' ' + repo.repoName)));
+            clonePromises.push(executil.execHelper(executil.ARGS('svn checkout ' + repo.svn + ' ' + repo.repoName + ' ' + '--trust-server-cert --non-interactive')));
         } else {
             var depthArg = depth == null ? '' : '--depth ' + depth + ' ';
             clonePromises.push(executil.execHelper(executil.ARGS('git clone ' + depthArg + createRepoUrl(repo))));


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org