Skip to content

Commit 7310647

Browse files
committed
Fixup syntax error
1 parent 4273746 commit 7310647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

private/app_file.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def _impl(ctx):
3535
registered_list = ""
3636

3737
applications_list = ""
38-
if src == "" or len(ctx.attr.extra_apps > 0) or len(ctx.attr.deps) > 0:
38+
if src == "" or len(ctx.attr.extra_apps) > 0 or len(ctx.attr.deps) > 0:
3939
applications = ["kernel", "stdlib"] + ctx.attr.extra_apps
4040
for dep in ctx.attr.deps:
4141
applications.append(dep[ErlangAppInfo].app_name)

0 commit comments

Comments
 (0)