Skip to content

Commit

Permalink
Change name of plugin target to readable form (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
clayellis committed Oct 18, 2022
1 parent f8b5e71 commit 76259eb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Package@swift-5.6.swift
Expand Up @@ -20,7 +20,7 @@ var package = Package(
targets: ["ArgumentParser"]),
.plugin(
name: "GenerateManualPlugin",
targets: ["GenerateManualPlugin"]),
targets: ["Generate Manual"]),
],
dependencies: [],
targets: [
Expand All @@ -40,12 +40,13 @@ var package = Package(

// Plugins
.plugin(
name: "GenerateManualPlugin",
name: "Generate Manual",
capability: .command(
intent: .custom(
verb: "generate-manual",
description: "Generate a manual entry for a specified target.")),
dependencies: ["generate-manual"]),
dependencies: ["generate-manual"],
path: "Plugins/GenerateManualPlugin"),

// Examples
.executableTarget(
Expand Down

0 comments on commit 76259eb

Please sign in to comment.