aboutsummaryrefslogtreecommitdiff
path: root/src/common.nim
diff options
context:
space:
mode:
authorkitsunyan2018-05-20 17:08:41 +0000
committerkitsunyan2018-05-20 17:08:41 +0000
commit5b5aa7c3968a4e36763edeb7d50b105a9248b39e (patch)
tree2dc669c64c17ec8be1427a0ea565dc2b1d578ee2 /src/common.nim
parent66432c5015f3677b39863a7dfeb4567243cb14a5 (diff)
Specify refspec when git fetch is used
Diffstat (limited to 'src/common.nim')
-rw-r--r--src/common.nim20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/common.nim b/src/common.nim
index ca6d8c9..8518ded 100644
--- a/src/common.nim
+++ b/src/common.nim
@@ -448,8 +448,8 @@ proc reloadPkgInfos*(config: Config, path: string, pkgInfos: seq[PackageInfo]):
template bareFullName*(bareKind: BareKind, bareName: string): string =
$bareKind & "-" & bareName & ".git"
-proc cloneBareRepo(config: Config, bareKind: BareKind, bareName: string, url: string,
- dropPrivileges: bool): Option[string] =
+proc cloneBareRepo(config: Config, bareKind: BareKind, bareName: string,
+ url: string, branchOption: Option[string], dropPrivileges: bool): Option[string] =
let fullName = bareFullName(bareKind, bareName)
let cachePath = config.userCache(dropPrivileges).cache(CacheKind.repositories)
let repoPath = repoPath(cachePath, fullName)
@@ -457,9 +457,12 @@ proc cloneBareRepo(config: Config, bareKind: BareKind, bareName: string, url: st
if forkWait(() => (block:
if not dropPrivileges or dropPrivileges():
if existsDir(repoPath):
- execResult(gitCmd, "-C", repoPath, "fetch", "-q", "--no-tags")
+ let branch = branchOption.get("master")
+ execResult(gitCmd, "-C", repoPath, "fetch", "-q", "--no-tags",
+ "origin", branch & ":" & branch)
else:
- execResult(gitCmd, "-C", cachePath, "clone", "-q", "--bare", "--no-tags", url, fullName)
+ execResult(gitCmd, "-C", cachePath, "clone", "-q", "--bare", "--no-tags",
+ url, fullName)
else:
quit(1))) == 0:
some(repoPath)
@@ -474,7 +477,7 @@ proc cloneBareRepos*(config: Config, bareKind: BareKind, gitRepos: seq[GitRepo],
else:
let bare = gitRepos
.filter(t => t.bareName.isSome)
- .map(r => (r.bareName.unsafeGet, r.url))
+ .map(r => (r.bareName.unsafeGet, r.url, r.branch))
.deduplicate
proc cloneNext(index: int, messages: List[string]): seq[string] =
@@ -483,8 +486,8 @@ proc cloneBareRepos*(config: Config, bareKind: BareKind, gitRepos: seq[GitRepo],
if index >= bare.len:
toSeq(messages.reversed.items)
else:
- let (bareName, url) = bare[index]
- let repoPath = cloneBareRepo(config, bareKind, bareName, url, dropPrivileges)
+ let (bareName, url, branch) = bare[index]
+ let repoPath = cloneBareRepo(config, bareKind, bareName, url, branch, dropPrivileges)
if repoPath.isSome:
cloneNext(index + 1, messages)
else:
@@ -644,7 +647,8 @@ proc cloneAurRepo*(config: Config, base: string, gitUrl: string,
let cloneBareCode = forkWait(() => (block:
if not dropPrivileges or dropPrivileges():
if existsDir(bareRepoPath):
- execResult(gitCmd, "-C", bareRepoPath, "fetch", "-q", "--no-tags")
+ execResult(gitCmd, "-C", bareRepoPath, "fetch", "-q", "--no-tags",
+ "origin", "master:master")
else:
execResult(gitCmd, "-C", cachePath, "clone", "-q", "--bare", "--no-tags",
gitUrl, "--single-branch", fullName)