Skip to content

Commit

Permalink
set auth when pulling tags
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wayne committed Jul 17, 2024
1 parent b2fd3ea commit beaa18d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ final class DescriptionsVersionManager {
try cacheRepository()

var output: String
output = (try? shellOut(to: "git ls-remote --quiet --tags | cut -d/ -f3", at: repositoryPath.absolute().string)) ?? String()
output = (try? shellOut(to: "git ls-remote --quiet --tags https://[email protected]/scribd/iscribd.git | cut -d/ -f3", at: repositoryPath.absolute().string)) ?? String()
if output.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
output = try shellOut(to: "git tag", at: repositoryPath.absolute().string)
}
Expand Down

0 comments on commit beaa18d

Please sign in to comment.