Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.1
// swift-tools-version:5.5

/**
* FTPPublishDeploy
Expand All @@ -10,19 +10,25 @@ import PackageDescription

let package = Package(
name: "FTPPublishDeploy",
platforms: [.macOS(.v12)],
products: [
.library(
name: "FTPPublishDeploy",
targets: ["FTPPublishDeploy"]),
],
dependencies: [
.package(url: "https://github.com/johnsundell/files.git", from: "4.0.0"),
.package(url: "https://github.com/johnsundell/publish.git", from: "0.5.0"),
.package(url: "https://github.com/johnsundell/shellout.git", from: "2.3.0"),
.package(name:"Files", url: "https://github.com/johnsundell/files.git", from: "4.0.0"),
.package(name:"Publish", url: "https://github.com/johnsundell/publish.git", from: "0.9.0"),
.package(name:"ShellOut", url: "https://github.com/johnsundell/shellout.git", from: "2.3.0"),
],
targets: [
.target(
name: "FTPPublishDeploy",
dependencies: ["Files", "Publish", "ShellOut"]),
dependencies: [
"Files",
"Publish",
"ShellOut"
]
),
]
)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Add FTPPublishDeploy to your `Package.swift` file.
let package = Package(
...
dependencies: [
.package(url: "https://github.com/dinsen/ftppublishdeploy", from: "0.1.0")
.package(name: "FTPPublishDeploy", url: "https://github.com/ascherbinin/FTPPublishDeploy", from: "0.1.0")
],
targets: [
.target(
.executableTarget(
...
dependencies: [
...
Expand Down