Просмотр исходного кода

use appRoot for current working directory

Anant Pathak 8 лет назад
Родитель
Сommit
14c2bb6ff2
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      leaks.go

+ 2 - 2
leaks.go

@@ -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,
 	})