Revolt
(Iulian Onofrei)
1
Steps to reproduce:
- Run
mkdir SomeToolName
cd SomeToolName
swift package init --type executable
- Open the
SomeToolName/Package.swift file with Xcode
- Add
products: [
.executable(
name: "stn",
targets: ["SomeToolName"]
),
],
after the name parameter
- Try to build the project
Current behaviour:
Expected behaviour:
- The project should build.
Fixing attempts:
Am I doing something wrong, or is this (executable name customization and testing) not supported (yet)?