Fix: remove mysterious r
:)
This commit is contained in:
parent
f90c099e68
commit
c4a040c933
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ func (r *Repo) Commands() []string {
|
||||||
branch := r.Branch
|
branch := r.Branch
|
||||||
if len(branch) == 0 {
|
if len(branch) == 0 {
|
||||||
branch = "master"
|
branch = "master"
|
||||||
}r
|
}
|
||||||
|
|
||||||
cmds := []string{}
|
cmds := []string{}
|
||||||
cmds = append(cmds, fmt.Sprintf("git clone --recursive --branch=%s %s %s", branch, r.Path, r.Dir))
|
cmds = append(cmds, fmt.Sprintf("git clone --recursive --branch=%s %s %s", branch, r.Path, r.Dir))
|
||||||
|
|
Loading…
Reference in a new issue