|
|
@@ -27,7 +27,7 @@ func start(opts *Options) {
|
|
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
|
|
|
|
|
//get current working directory
|
|
|
- dir,err := os.Getwd()
|
|
|
+ appRoot, err := os.Getwd()
|
|
|
if err != nil {
|
|
|
fmt.Println(err)
|
|
|
return
|
|
|
@@ -35,7 +35,7 @@ func start(opts *Options) {
|
|
|
|
|
|
repoName := getLocalRepoName(opts.RepoURL)
|
|
|
fmt.Printf("Cloning \x1b[37;1m%s\x1b[0m...\n", opts.RepoURL)
|
|
|
- _, err = git.PlainClone(dir + "/" + repoName, false, &git.CloneOptions{
|
|
|
+ _, err = git.PlainClone(appRoot + "/" + repoName, false, &git.CloneOptions{
|
|
|
URL: opts.RepoURL,
|
|
|
RecurseSubmodules: git.DefaultSubmoduleRecursionDepth,
|
|
|
})
|