From 19565c1fd24ab89a8308b9fb6f79de39a5645e4d Mon Sep 17 00:00:00 2001 From: Morten Mjelva Date: Mon, 29 Apr 2024 13:47:57 +0200 Subject: [PATCH] Fix invalid reference in coursier.bzl --- private/rules/coursier.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/rules/coursier.bzl b/private/rules/coursier.bzl index bb277c2da..55d26ced6 100644 --- a/private/rules/coursier.bzl +++ b/private/rules/coursier.bzl @@ -1364,7 +1364,7 @@ pinned_coursier_fetch = repository_rule( doc = "Instructions to re-pin the repository if required. Many people have wrapper scripts for keeping dependencies up to date, and would like to point users to that instead of the default.", ), "excluded_artifacts": attr.string_list(default = []), # only used for hash generation - "_workspace_label": attr.label(default = Label("@//does/not:exist")), + "_workspace_label": attr.label(default = Label("@@//does/not:exist")), }, implementation = _pinned_coursier_fetch_impl, )