github.com/ilyakaznacheev/glide@v0.13.2/repo/repo.go (about)

     1  // Package repo provides tools for working with VCS repositories.
     2  //
     3  // Glide manages repositories in the vendor directory by using the native VCS
     4  // systems of each repository upon which the code relies.
     5  package repo
     6  
     7  // concurrentWorkers is the number of workers to be used in concurrent operations.
     8  var concurrentWorkers = 20
     9  
    10  // UpdatingVendored indicates whether this run of Glide is updating a vendored vendor/ path.
    11  //
    12  // It is related to the --update-vendor flag for update and install.
    13  //
    14  // TODO: This is legacy, and maybe we should handle it differently. It should
    15  // be set either 0 or 1 times, and only at startup.
    16  //var UpdatingVendored bool = false