Skip to content

Commit 032ccef

Browse files
authored
Merge pull request #1212 from apple/chicken-scratch
s/build-path/scratch-path
2 parents 638463d + 4a41aa9 commit 032ccef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/SwiftDriverTests/IntegrationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ final class IntegrationTests: IntegrationTestCase {
8484
let buildPath = path.appending(component: "build")
8585
let args = [
8686
"swift", "build", "--package-path", packageDirectory.pathString,
87-
"--build-path", buildPath.pathString
87+
"--scratch-path", buildPath.pathString
8888
]
8989
let extraEnv = [ "SWIFT_EXEC": compiler.pathString]
9090

Utilities/build-script-helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def swiftpm_bin_path(swift_exec, swiftpm_args, env=None):
7272
def get_swiftpm_options(args):
7373
swiftpm_args = [
7474
'--package-path', args.package_path,
75-
'--build-path', args.build_path,
75+
'--scratch-path', args.build_path,
7676
'--configuration', args.configuration,
7777
]
7878

0 commit comments

Comments
 (0)