Skip to content

Commit

Permalink
Use https:// for all git clones. (#9)
Browse files Browse the repository at this point in the history
Motivation:

Users shouldn't need a GitHub account to build the repository.

Modifications:

Use https:// for all git dependencies.

Result:

Happy users
  • Loading branch information
Lukasa authored and weissi committed Feb 28, 2018
1 parent c390267 commit 85a55f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ let package = Package(
.executable(name: "NIOTLSServer", targets: ["NIOTLSServer"]),
],
dependencies: [
.package(url: "git@github.com:apple/swift-nio.git", .branch("master")),
.package(url: "git@github.com:apple/swift-nio-ssl-support.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0"),
.package(url: "https://github.com/apple/swift-nio-ssl-support.git", from: "1.0.0"),
],
targets: [
.target(name: "CNIOOpenSSL"),
Expand Down

0 comments on commit 85a55f9

Please sign in to comment.