@@ -248,7 +248,7 @@ let package = Package(
248
248
if ProcessInfo . processInfo. environment [ " SWIFTPM_LLBUILD_FWK " ] == nil {
249
249
if ProcessInfo . processInfo. environment [ " SWIFTCI_USE_LOCAL_DEPS " ] == nil {
250
250
package . dependencies += [
251
- . package ( url: " https://github.com/apple/swift-llbuild.git " , . branch( " master " ) ) ,
251
+ . package ( url: " https://github.com/apple/swift-llbuild.git " , . branch( " main " ) ) ,
252
252
]
253
253
} else {
254
254
// In Swift CI, use a local path to llbuild to interoperate with tools
@@ -262,14 +262,14 @@ if ProcessInfo.processInfo.environment["SWIFTPM_LLBUILD_FWK"] == nil {
262
262
263
263
if ProcessInfo . processInfo. environment [ " SWIFTCI_USE_LOCAL_DEPS " ] == nil {
264
264
package . dependencies += [
265
- . package ( url: " https://github.com/apple/swift-tools-support-core.git " , . branch( " master " ) ) ,
265
+ . package ( url: " https://github.com/apple/swift-tools-support-core.git " , . branch( " main " ) ) ,
266
266
// The 'swift-argument-parser' version declared here must match that
267
267
// used by 'swift-driver' and 'sourcekit-lsp'. Please coordinate
268
268
// dependency version changes here with those projects.
269
269
. package (
270
270
url: " https://github.com/apple/swift-argument-parser.git " ,
271
271
. upToNextMinor( from: " 0.3.1 " ) ) ,
272
- . package ( url: " https://github.com/apple/swift-driver.git " , . branch( " master " ) ) ,
272
+ . package ( url: " https://github.com/apple/swift-driver.git " , . branch( " main " ) ) ,
273
273
]
274
274
} else {
275
275
package . dependencies += [
0 commit comments