Skip to content

Commit 2e310b4

Browse files
committed
buildifier and changelog
Signed-off-by: Aaron Sky <aaronsky@skyaaron.com>
1 parent 785f548 commit 2e310b4

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ END_UNRELEASED_TEMPLATE
4949
### New
5050

5151
* Added `--@rules_xcodeproj//xcodeproj:separate_index_build_output_base` flag to configure the generator to use a separate output base for index builds: [#3243](https://github.com/MobileNativeFoundation/rules_xcodeproj/pull/3243)
52+
* Added support for StoreKit configuration files to `xcschemes.run`, for use with [StoreKit Testing](https://developer.apple.com/documentation/xcode/setting-up-storekit-testing-in-xcode).
5253

5354
### Adjusted
5455

xcodeproj/internal/files/files.bzl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@ def relativize_unchecked(path, start):
136136
unconditionally attempts to establish a relative path between two paths,
137137
regardless of whether or not the path is under the source. It is inherently
138138
unsafe.
139+
140+
Args:
141+
path: The path to relativize, as the destination.
142+
start: The path to relativize against, as the source.
139143
"""
140144
segments = paths.normalize(path).split("/")
141145
start_segments = paths.dirname(paths.normalize(start)).split("/")

0 commit comments

Comments
 (0)