Skip to content

Commit

Permalink
Correcting .NET NuGet package build rule definition
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jul 1, 2019
1 parent 33ab01c commit 059e652
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dotnet/nuget.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
load("@io_bazel_rules_dotnet//dotnet/private:context.bzl", "dotnet_context")
load(
"@io_bazel_rules_dotnet//dotnet/private:context.bzl",
"dotnet_context"
)

def _nuget_package_impl(ctx):
args = [
Expand Down Expand Up @@ -32,7 +35,7 @@ def _nuget_package_impl(ctx):
ctx.actions.run(
executable = ctx.executable.nuget_exe,
arguments = args,
inputs = ctx.attr.src.files + ctx.files.deps,
inputs = ctx.attr.src.files.to_list() + ctx.files.deps,
outputs = [
package_file,
]
Expand Down

0 comments on commit 059e652

Please sign in to comment.