mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 07:00:35 +00:00
chore(lune): use uppercase for letter of tool choice in manifest desc
This commit is contained in:
parent
dcfc331c3c
commit
9ecf980110
1 changed files with 3 additions and 1 deletions
|
@ -117,7 +117,9 @@ for tool, generators in lib.generators do
|
|||
local toolManifest: manifest.PesdeManifest = {
|
||||
name = `pesde/scripts_{toolChoice}`,
|
||||
version = toolMeta.version,
|
||||
description = `Scripts for {toolChoice}-based Roblox projects`,
|
||||
-- For the description, we capitalize the first letter of the tool name here
|
||||
-- since it is a proper noun
|
||||
description = `Scripts for {string.gsub(toolChoice, "^%l", string.upper)}-based Roblox projects.`,
|
||||
authors = {
|
||||
"daimond113 <contact@daimond113.com> (https://www.daimond113.com/)",
|
||||
"Erica Marigold <hi@devcomp.xyz>",
|
||||
|
|
Loading…
Reference in a new issue