From fdd6da436c68668b3dc139d4574fba72845fcbcb Mon Sep 17 00:00:00 2001 From: Ulugbek Adilbekov Date: Mon, 16 May 2022 11:14:18 +0100 Subject: [PATCH] surround credentials string with quotes --- specs.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs.bzl b/specs.bzl index aa05eb9eb..dcbcd8840 100644 --- a/specs.bzl +++ b/specs.bzl @@ -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,