Skip to content

Commit

Permalink
Added note about C module maps to the -p,--playground flag for the in…
Browse files Browse the repository at this point in the history
…stall command
  • Loading branch information
calebkleveter committed Sep 6, 2018
1 parent 683f55f commit f1def2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## [2018.09.05]

### Added
- A `-p,--playground` option to the `install` command to install dependencies to an Xcode Playground instead of an SPM project.
- A `-p,--playground` option to the `install` command to install dependencies to an Xcode Playground instead of an SPM project. Playground installs do not support packages the use C module maps.
- `-t,--targets` flag to the `install` command, which specifies which targets the new dependency will be added to.

## [2018.08.11]
Expand Down
3 changes: 2 additions & 1 deletion Sources/Ether/Install/Install.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public final class Install: Command {
#if !os(Linux)
self.options.append(
CommandOption.value(name: "playground", short: "p", help: [
"The name of the playground to install the package to, if you want to install the package to a playground."
"The name of the playground to install the package to, if you want to install the package to a playground",
"Dependencies that use C module maps are note yet supported. This includes packages such as Swift NIO"
])
)
#endif
Expand Down

0 comments on commit f1def2a

Please sign in to comment.