Skip to content

Commit

Permalink
Determinism fixes (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
purkhusid authored Oct 27, 2023
1 parent 217b3f7 commit c224cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/private/rules/nuget/nuget_archive.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def _nuget_archive_impl(ctx):
auth = _get_auth_dict(ctx, ctx.attr.netrc, urls)
ctx.download_and_extract(urls, type = "zip", integrity = ctx.attr.sha512, auth = auth)

files = _read_dir(ctx, ".").replace(str(ctx.path(".")) + "/", "").splitlines()
files = sorted(_read_dir(ctx, ".").replace(str(ctx.path(".")) + "/", "").splitlines())

# The NuGet package format
groups = {
Expand Down

0 comments on commit c224cf1

Please sign in to comment.