Skip to content

Commit 6bad404

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 9978bde commit 6bad404

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
@@ -91,7 +91,7 @@ def get_build_target(swift_exec: str, args: argparse.Namespace) -> str:
9191
def get_swiftpm_options(swift_exec: str, args: argparse.Namespace) -> List[str]:
9292
swiftpm_args = [
9393
'--package-path', args.package_path,
94-
'--build-path', args.build_path,
94+
'--scratch-path', args.build_path,
9595
'--configuration', args.configuration,
9696
]
9797

0 commit comments

Comments
 (0)