Skip to content

Commit abc35f0

Browse files
committed
fix
1 parent ad7014a commit abc35f0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

xcodeproj/internal/xcodeproj_rule.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ https://github.com/MobileNativeFoundation/rules_xcodeproj/issues/new?template=bu
200200
)
201201

202202
return info
203+
203204
# Actions
204205

205206
def _write_bazel_integration_files(

xcodeproj/xcodeproj.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ load(
44
"//xcodeproj:project_options.bzl",
55
_default_project_options = "project_options",
66
)
7-
load("//xcodeproj:xcschemes.bzl", "xcschemes")
87
load("//xcodeproj:top_level_target.bzl", "top_level_target")
8+
load("//xcodeproj:xcschemes.bzl", _xcschemes = "xcschemes")
99
load("//xcodeproj/internal:bazel_labels.bzl", "bazel_labels")
1010
load("//xcodeproj/internal:xcodeproj_runner.bzl", "xcodeproj_runner")
1111
load(
@@ -376,7 +376,7 @@ def xcodeproj(
376376
if not project_options:
377377
project_options = _default_project_options()
378378
if not scheme_autogeneration_config:
379-
scheme_autogeneration_config = xcschemes.autogeneration_config()
379+
scheme_autogeneration_config = _xcschemes.autogeneration_config()
380380
if not xcode_configurations:
381381
xcode_configurations = {"Debug": {}}
382382

0 commit comments

Comments
 (0)