From 52a9ba3ceee2a4bff9506e68da722057658db395 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sat, 3 Dec 2022 05:40:48 -0500 Subject: [PATCH] Wrong spelling on the git option. --- commands/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/create.js b/commands/create.js index 2ff5b2a..c75417f 100644 --- a/commands/create.js +++ b/commands/create.js @@ -8,7 +8,7 @@ export const description = "Test command."; export const options = [ ["--repo", "repository to dupe and setup", BANDO_GIT], - ["--templates", "templates directory to use for setups", "commands/templates"] + ["--template", "templates directory to use for setups", "commands/templates"] ]; export const argument = ["", "name of the project"];