Skip to content

Commit 6fbe5ac

Browse files
committed
[Documentation] Update Development.md
Include the platform name in the binary path as we expect to find things relative to that. -- https://bugs.swift.org/browse/SR-5801
1 parent af0e1d8 commit 6fbe5ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Documentation/Development.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ using a [snapshot](https://swift.org/download/#releases) from swift.org.
6666
### Example:
6767
```sh
6868
$ cd /tmp && mkdir hello && cd hello
69-
$ /path/to/swiftpm/.build/debug/swift-package init
70-
$ /path/to/swiftpm/.build/debug/swift-build
69+
$ /path/to/swiftpm/.build/x86_64-apple-macosx10.10/debug/swift-package init
70+
$ /path/to/swiftpm/.build/x86_64-apple-macosx10.10/debug/swift-build
7171
```
7272

7373

@@ -89,10 +89,10 @@ bootstrap script first.
8989
$ cd swiftpm
9090

9191
# Rebuild just the sources.
92-
$ .build/debug/swift-build
92+
$ .build/x86_64-apple-macosx10.10/debug/swift-build
9393

9494
# Run a single test.
95-
$ .build/debug/swift-test --filter BasicTests.GraphAlgorithmsTests/testCycleDetection
95+
$ .build/x86_64-apple-macosx10.10/debug/swift-test --filter BasicTests.GraphAlgorithmsTests/testCycleDetection
9696
```
9797

9898
Note: If you make any changes to `PackageDescription` or `PackageDescription4`

0 commit comments

Comments
 (0)