Skip to content

Commit

Permalink
surround credentials string with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulugbek Adilbekov committed May 16, 2022
1 parent 6c325c2 commit fdd6da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def _repository_credentials(repository_spec):
credentials = repository_spec["credentials"]

# See https://get-coursier.io/docs/other-credentials.html#inline for docs on this format
return hostname + " " + credentials["user"] + ":" + credentials["password"]
return '"' + hostname + " " + credentials["user"] + ":" + credentials["password"] + '"'

utils = struct(
artifact_coordinate = _artifact_to_coord,
Expand Down

0 comments on commit fdd6da4

Please sign in to comment.