Build Information
Successful build of ExtendedAttributes, reference 1.0.0 (969886
), with Swift 6.0 for macOS (SPM) on 4 Nov 2024 11:18:21 UTC.
Swift 6 data race errors: 5
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sindresorhus/ExtendedAttributes.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sindresorhus/ExtendedAttributes
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at 9698866 1.0.0
Cloned https://github.com/sindresorhus/ExtendedAttributes.git
Revision (git rev-parse @):
9698866bf8880abccca0b70b059e7c19386cdefa
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/sindresorhus/ExtendedAttributes.git at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "extendedattributes",
"name": "ExtendedAttributes",
"url": "https://github.com/sindresorhus/ExtendedAttributes.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ExtendedAttributes",
"dependencies": [
]
}
]
}
Fetching https://github.com/sindresorhus/ExtendedAttributes.git
[1/35] Fetching extendedattributes
Fetched https://github.com/sindresorhus/ExtendedAttributes.git from cache (0.68s)
Creating working copy for https://github.com/sindresorhus/ExtendedAttributes.git
Working copy of https://github.com/sindresorhus/ExtendedAttributes.git resolved at 1.0.0 (9698866)
warning: '.resolve-product-dependencies': dependency 'extendedattributes' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/sindresorhus/ExtendedAttributes.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/7] Compiling ExtendedAttributes Utilities.swift
[4/7] Compiling ExtendedAttributes ExtendedAttributes.swift
[5/7] Emitting module ExtendedAttributes
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:8:21: warning: static property 'noExport' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
7 | */
8 | public static let noExport = Self(rawValue: XATTR_FLAG_NO_EXPORT)
| |- warning: static property 'noExport' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noExport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 |
10 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:15:21: warning: static property 'contentDependent' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
13 | This property causes the attribute to be preserved for copy and share, but not for safe save. In a safe save, the attriubte exists on the original, and will not be copied to the new version.
14 | */
15 | public static let contentDependent = Self(rawValue: XATTR_FLAG_CONTENT_DEPENDENT)
| |- warning: static property 'contentDependent' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'contentDependent' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:20:21: warning: static property 'neverPreserve' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
18 | Declares that the attribute is never to be copied, for any intention type.
19 | */
20 | public static let neverPreserve = Self(rawValue: XATTR_FLAG_NEVER_PRESERVE)
| |- warning: static property 'neverPreserve' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'neverPreserve' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:25:21: warning: static property 'syncable' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
23 | Declares that the attribute is to be synced, used by the `XATTR_OPERATION_ITENT_SYNC` intention. Syncing tends to want to minimize the amount of metadata synced around, hence the default behavior is for the attribute NOT to be synced, even if it would else be preserved for the `XATTR_OPERATION_ITENT_COPY` intention.
24 | */
25 | public static let syncable = Self(rawValue: XATTR_FLAG_SYNCABLE)
| |- warning: static property 'syncable' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'syncable' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:30:21: warning: static property 'onlyBackup' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
28 | Declares that the attribute should only be copied if the intention is `XATTR_OPERATION_INTENT_BACKUP`. That intention is distinct from the `XATTR_OPERATION_INTENT_SYNC` intention in that there is no desire to minimize the amount of metadata being moved.
29 | */
30 | public static let onlyBackup = Self(rawValue: XATTR_FLAG_ONLY_BACKUP)
| |- warning: static property 'onlyBackup' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'onlyBackup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var rawValue: xattr_flags_t
[6/7] Compiling ExtendedAttributes ExtendedAttributes+Flags.swift
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:8:21: warning: static property 'noExport' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
7 | */
8 | public static let noExport = Self(rawValue: XATTR_FLAG_NO_EXPORT)
| |- warning: static property 'noExport' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noExport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 |
10 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:15:21: warning: static property 'contentDependent' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
13 | This property causes the attribute to be preserved for copy and share, but not for safe save. In a safe save, the attriubte exists on the original, and will not be copied to the new version.
14 | */
15 | public static let contentDependent = Self(rawValue: XATTR_FLAG_CONTENT_DEPENDENT)
| |- warning: static property 'contentDependent' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'contentDependent' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |
17 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:20:21: warning: static property 'neverPreserve' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
18 | Declares that the attribute is never to be copied, for any intention type.
19 | */
20 | public static let neverPreserve = Self(rawValue: XATTR_FLAG_NEVER_PRESERVE)
| |- warning: static property 'neverPreserve' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'neverPreserve' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:25:21: warning: static property 'syncable' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
23 | Declares that the attribute is to be synced, used by the `XATTR_OPERATION_ITENT_SYNC` intention. Syncing tends to want to minimize the amount of metadata synced around, hence the default behavior is for the attribute NOT to be synced, even if it would else be preserved for the `XATTR_OPERATION_ITENT_COPY` intention.
24 | */
25 | public static let syncable = Self(rawValue: XATTR_FLAG_SYNCABLE)
| |- warning: static property 'syncable' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'syncable' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 |
27 | /**
/Users/admin/builder/spi-builder-workspace/Sources/ExtendedAttributes/ExtendedAttributes+Flags.swift:30:21: warning: static property 'onlyBackup' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension ExtendedAttributes {
4 | public struct Flags: OptionSet {
| `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
5 | /**
6 | Declare that the attribute should not be exported. This is deliberately a bit vague, but this is used by `XATTR_OPERATION_INTENT_SHARE` to indicate not to preserve the attribute.
:
28 | Declares that the attribute should only be copied if the intention is `XATTR_OPERATION_INTENT_BACKUP`. That intention is distinct from the `XATTR_OPERATION_INTENT_SYNC` intention in that there is no desire to minimize the amount of metadata being moved.
29 | */
30 | public static let onlyBackup = Self(rawValue: XATTR_FLAG_ONLY_BACKUP)
| |- warning: static property 'onlyBackup' is not concurrency-safe because non-'Sendable' type 'ExtendedAttributes.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'onlyBackup' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | public var rawValue: xattr_flags_t
[7/7] Compiling ExtendedAttributes SystemMetadata.swift
Build complete! (7.11s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ExtendedAttributes",
"name" : "ExtendedAttributes",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "ExtendedAttributes",
"targets" : [
"ExtendedAttributes"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ExtendedAttributesTests",
"module_type" : "SwiftTarget",
"name" : "ExtendedAttributesTests",
"path" : "Tests/ExtendedAttributesTests",
"sources" : [
"ExtendedAttributesTests.swift"
],
"target_dependencies" : [
"ExtendedAttributes"
],
"type" : "test"
},
{
"c99name" : "ExtendedAttributes",
"module_type" : "SwiftTarget",
"name" : "ExtendedAttributes",
"path" : "Sources/ExtendedAttributes",
"product_memberships" : [
"ExtendedAttributes"
],
"sources" : [
"ExtendedAttributes+Flags.swift",
"ExtendedAttributes.swift",
"SystemMetadata.swift",
"Utilities.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/sindresorhus/extendedattributes/1.0.0
Repository: sindresorhus/ExtendedAttributes
Swift version used: 6.0
Target: ExtendedAttributes
Extracting symbol information for 'ExtendedAttributes'...
Finished extracting symbol information for 'ExtendedAttributes'. (2.83s)
Building documentation for 'ExtendedAttributes'...
warning: Parameter 'type' is missing documentation
--> ../SystemMetadata.swift:31:50-31:50
29 | Retrieves the value of the metadata item specified by the given name.
30 |
31 + - Parameter name: The name of the metadata item.
| ╰─suggestion: Document 'type' parameter
32 | - Returns: The metadata item value or `nil` if it does not exist.
33 | - Throws: An error if the file is not accessible or the operation fails.Finished building documentation for 'ExtendedAttributes' (0.16s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/sindresorhus/extendedattributes/1.0.0
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.26s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.72s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.25s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.72s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling Snippets SnippetParser.swift
[8/57] Compiling Snippets Snippet.swift
[9/57] Emitting module Snippets
[10/57] Compiling SymbolKit SemanticVersion.swift
[11/57] Compiling SymbolKit AccessControl.swift
[12/57] Compiling SymbolKit Availability.swift
[13/57] Compiling SymbolKit AvailabilityItem.swift
[14/57] Compiling SymbolKit Domain.swift
[15/57] Compiling SymbolKit Names.swift
[16/57] Compiling SymbolKit SPI.swift
[17/57] Compiling SymbolKit Snippet.swift
[18/57] Compiling SymbolKit Extension.swift
[19/57] Compiling SymbolKit SourceRange.swift
[20/57] Compiling SymbolKit Metadata.swift
[21/57] Compiling SymbolKit Module.swift
[22/57] Compiling SymbolKit OperatingSystem.swift
[23/57] Compiling SymbolKit Platform.swift
[24/57] Compiling SymbolKit Symbol.swift
[25/57] Compiling SymbolKit SymbolKind.swift
[26/57] Compiling SymbolKit SymbolGraph.swift
[27/57] Compiling SymbolKit GraphCollector.swift
[28/57] Compiling SymbolKit DeclarationFragments.swift
[29/57] Compiling SymbolKit Fragment.swift
[30/57] Compiling SymbolKit FragmentKind.swift
[31/57] Compiling SymbolKit FunctionParameter.swift
[32/57] Compiling SymbolKit FunctionSignature.swift
[33/57] Compiling SymbolKit Identifier.swift
[34/57] Compiling SymbolKit KindIdentifier.swift
[35/57] Compiling SymbolKit Location.swift
[36/57] Compiling SymbolKit Mutability.swift
[37/57] Compiling SymbolKit Mixin+Equals.swift
[38/57] Compiling SymbolKit Mixin+Hash.swift
[39/57] Compiling SymbolKit Mixin.swift
[40/57] Compiling SymbolKit LineList.swift
[41/57] Compiling SymbolKit Position.swift
[42/57] Compiling SymbolKit GenericConstraint.swift
[43/57] Compiling SymbolKit GenericParameter.swift
[44/57] Compiling SymbolKit Generics.swift
[45/57] Compiling SymbolKit Namespace.swift
[46/57] Compiling SymbolKit Relationship.swift
[47/57] Compiling SymbolKit RelationshipKind.swift
[48/57] Compiling SymbolKit SourceOrigin.swift
[49/57] Compiling SymbolKit GenericConstraints.swift
[50/57] Compiling SymbolKit Swift.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.52s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/6] Compiling ExtendedAttributes Utilities.swift
[3/6] Compiling ExtendedAttributes SystemMetadata.swift
[4/6] Emitting module ExtendedAttributes
[5/6] Compiling ExtendedAttributes ExtendedAttributes+Flags.swift
[6/6] Compiling ExtendedAttributes ExtendedAttributes.swift
Build of target: 'ExtendedAttributes' complete! (0.67s)
154
2 /Users/admin/builder/spi-builder-workspace/.docs/sindresorhus/extendedattributes/1.0.0
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/sindresorhus/extendedattributes/1.0.0
File count: 154
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-sindresorhus-extendedattributes-1.0.0-3a4a86bd.zip to s3://spi-docs-inbox/prod-sindresorhus-extendedattributes-1.0.0-3a4a86bd.zip
Copying... [15%]
Copying... [29%]
Copying... [44%]
Copying... [59%]
Copying... [73%]
Copying... [88%]
Copying... [100%]
Done.