Skip to content

Commit 4a50528

Browse files
authored
Update Package.swift (#9)
### Motivation The example points to a local version of the repo, but it's now ready to point to github. ### Modifications Changed the `Package.swift` in the getting started example to point to this repo. ### Result Example code will no longer look for a local copy. ### Test Plan I built and ran the package and it said hello!
1 parent 4dbce5f commit 4a50528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Examples/hello-world-cli-example/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let package = Package(
88
.macOS(.v15)
99
],
1010
dependencies: [
11-
.package(path: "../..", traits: [.defaults, "CommandLineArgumentsSupport"])
11+
.package(url: "https://github.com/apple/swift-configuration", .upToNextMinor(from: "0.1.0"), traits: [.defaults, "CommandLineArgumentsSupport"])
1212
],
1313
targets: [
1414
.executableTarget(

0 commit comments

Comments
 (0)