Skip to content

Commit

Permalink
[fix] server does not build the project on sync
Browse files Browse the repository at this point in the history
Merge-request: BAZEL-MR-761
Merged-by: Marcin Abramowicz <marcin.abramowicz@jetbrains.com>
  • Loading branch information
abrams27 authored and Space Team committed Jan 12, 2024
1 parent 8009bec commit 6ec65a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspects/utils/utils.bzl
Expand Up @@ -91,7 +91,7 @@ def create_proto(target, ctx, data, name):
return info_file

def is_external(target):
return not str(target.label).startswith("@//") and not str(target.label).startswith("//")
return not str(target.label).startswith("@@//") and not str(target.label).startswith("@//") and not str(target.label).startswith("//")

def convert_struct_to_dict(s):
attrs = dir(s)
Expand Down

0 comments on commit 6ec65a8

Please sign in to comment.