Skip to content

Commit 3080cc9

Browse files
committed
Rename --build-path to --scratch-path in SwiftPM invocation
`--build-path` has been deprectated in favor of `--scratch-path` in SwiftPM.
1 parent f4eafd1 commit 3080cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/build-script-helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def get_swiftpm_options(args: argparse.Namespace) -> List[str]:
7474
"""
7575
swiftpm_args = [
7676
'--package-path', args.package_path,
77-
'--build-path', args.build_path,
77+
'--scratch-path', args.build_path,
7878
'--configuration', args.configuration,
7979
]
8080

0 commit comments

Comments
 (0)