Skip to content

Commit

Permalink
Clean labels prefix on bazel modules
Browse files Browse the repository at this point in the history
  • Loading branch information
z8v committed Feb 9, 2023
1 parent 4977aa4 commit 15afc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh/sh.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ShBinariesInfo = provider(
_WINDOWS_EXE_EXTENSIONS = [".exe", ".cmd", ".bat", ".ps1"]

def _normalize_label(label):
return str(label).replace("@//", "//")
return str(label).replace("@//", "//").replace("@//", "//")

def _sh_binaries_from_srcs(ctx, srcs, is_windows):
executable_files = []
Expand Down

0 comments on commit 15afc12

Please sign in to comment.