Skip to content
This repository has been archived by the owner on Mar 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #53 from rmohr/fix-goimports-local
Browse files Browse the repository at this point in the history
Fix goimports -local flag
  • Loading branch information
ash2k committed Mar 19, 2019
2 parents 02472d8 + cb8b321 commit 7d29600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goimports/def.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def _goimports_impl(ctx):
"-d=" + str(ctx.attr.display_diffs).lower(),
"-e=" + str(ctx.attr.report_all_errors).lower(),
"-l=" + str(ctx.attr.list).lower(),
"-local=" + shell.quote(",".join(ctx.attr.local)),
"-local=" + ",".join(ctx.attr.local),
"-v=" + str(ctx.attr.verbose).lower(),
"-w=" + str(ctx.attr.write).lower(),
]
Expand Down

0 comments on commit 7d29600

Please sign in to comment.