File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import PackageDescription
5
5
let package = Package (
6
6
name: " swift-package-collection-generator " ,
7
7
// Required for JSONEncoder/Decoder formatting and ISO-8601 support
8
- platforms: [ . macOS( " 10.15.4 " ) ] ,
8
+ platforms: [ . macOS( . v12 ) ] ,
9
9
products: [
10
10
. executable( name: " package-collection-generate " , targets: [ " PackageCollectionGenerator " ] ) ,
11
11
. executable( name: " package-collection-sign " , targets: [ " PackageCollectionSigner " ] ) ,
Original file line number Diff line number Diff line change 2
2
//
3
3
// This source file is part of the Swift Package Collection Generator open source project
4
4
//
5
- // Copyright (c) 2020 Apple Inc. and the Swift Package Collection Generator project authors
5
+ // Copyright (c) 2020-2023 Apple Inc. and the Swift Package Collection Generator project authors
6
6
// Licensed under Apache License v2.0
7
7
//
8
8
// See LICENSE.txt for license information
@@ -52,7 +52,7 @@ private final class InteractiveWriter {
52
52
term. write ( string, inColor: color, bold: bold)
53
53
term. endLine ( )
54
54
} else {
55
- self . stream <<< string
55
+ self . stream. send ( string)
56
56
self . stream. flush ( )
57
57
}
58
58
}
You can’t perform that action at this time.
0 commit comments