We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59ce130 commit 66b8772Copy full SHA for 66b8772
external/buildscripts/Build.bee.cs
@@ -37,7 +37,7 @@ internal static void Main()
37
{
38
var artifactName = item.Item1;
39
var artifactId = item.Item2;
40
- var repoName = item.Item3;
+ var repoName = new RepoName(item.Item3);
41
DownloadArtifact(artifactId, artifactName, repoName);
42
}
43
@@ -47,7 +47,7 @@ internal static void Main()
47
48
49
50
- private static void DownloadArtifact(string artifactId, string artifactName, string repoName)
+ private static void DownloadArtifact(string artifactId, string artifactName, RepoName repoName)
51
52
Console.WriteLine($">>> Registering artifact {artifactName}");
53
var artifact = new StevedoreArtifact(repoName, new ArtifactId(artifactId));
external/buildscripts/bee.exe
-67 KB
0 commit comments