Skip to content

Commit

Permalink
Lint everything
Browse files Browse the repository at this point in the history
  • Loading branch information
dfed committed May 17, 2024
1 parent e38cc46 commit dfe9ad0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
.library(
name: "CADCacheAdvance",
targets: ["CADCacheAdvance"]
)
),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.7.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
.library(
name: "CADCacheAdvance",
targets: ["CADCacheAdvance"]
)
),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.8.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
.library(
name: "CADCacheAdvance",
targets: ["CADCacheAdvance"]
)
),
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions Package@swift-5.9.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
.watchOS(.v6),
.macOS(.v10_15),
.macCatalyst(.v13),
.visionOS(.v1)
.visionOS(.v1),
],
products: [
.library(
Expand All @@ -21,7 +21,7 @@ let package = Package(
.library(
name: "CADCacheAdvance",
targets: ["CADCacheAdvance"]
)
),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Scripts/build.swift
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ for rawPlatform in rawPlatforms {
throw TaskError.code(1)
}

if isFirstRun && platform.shouldGenerateXcodeproj {
if isFirstRun, platform.shouldGenerateXcodeproj {
// Generate the xcode project if we need it
try execute(commandPath: "/usr/bin/swift", arguments: ["package", "generate-xcodeproj", "--output=generated/"])

Expand Down

0 comments on commit dfe9ad0

Please sign in to comment.