Skip to content

Commit

Permalink
use .git in dependency URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
MahdiBM committed Oct 28, 2024
1 parent 0c4b38e commit fccfd19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ let package = Package(
],
dependencies: [
.package(
url: "https://github.com/swiftlang/swift-syntax",
url: "https://github.com/swiftlang/swift-syntax.git",
"509.0.0" ..< "601.0.0-latest"
),
.package(
url: "https://github.com/hummingbird-project/swift-mustache",
from: "2.0.0-beta.3"
url: "https://github.com/hummingbird-project/swift-mustache.git",
from: "2.0.0"
),
],
targets: [
Expand Down
6 changes: 3 additions & 3 deletions Package@swift-6.0.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ let package = Package(
],
dependencies: [
.package(
url: "https://github.com/swiftlang/swift-syntax",
url: "https://github.com/swiftlang/swift-syntax.git",
"509.0.0" ..< "601.0.0-latest"
),
.package(
url: "https://github.com/hummingbird-project/swift-mustache",
from: "2.0.0-beta.3"
url: "https://github.com/hummingbird-project/swift-mustache.git",
from: "2.0.0"
),
],
targets: [
Expand Down

0 comments on commit fccfd19

Please sign in to comment.